Skip to content
#

Tensorflow

tensorflow logo

TensorFlow is an open source library that was created by Google. It is used to design, build, and train deep learning models.

Here are 16,862 public repositories matching this topic...

saeedalahmari3
saeedalahmari3 commented Apr 23, 2020

In Keras documentation, glorot_uniform says that the initializer is using Glorot Uniform from this paper. However, the Keras implementation is totally different from the equation on the paper. Also, there are some arguments such as mode ='fan_avg' is the default. It should be same as the referenced paper. 'fan_sum'. Golort uniform is shown

dhruvsakalley
dhruvsakalley commented Mar 2, 2020

When you look at the variables in the pretrained base uncased BERT the varibles look like list 1. When you do the training from scratch, 2 additional variables per layer are introduced, with suffixes adam_m and adam_v. It would be nice for someone to explain what these variables are? and what is their significance to the process of training?
If one were to manually initialize variables from a pri

TCHERAKAmine
TCHERAKAmine commented Apr 5, 2020

Hello All;

Hope your are doing well;

In Mask RCNN I would like change the color of the mask to be White with the Alpha = 1, I change it frome the right place in vizualize.py, but anything change the mask color still red or blue or another color, why the changes on vizualize.py dont have effect ?

atiato
atiato commented Aug 7, 2018

Dears,

if somebody has instructions , my target is to recognize a face using tensor flow but I didn't find a full instructions which scripts to use to do the following :
1- crop faces
2- Train images .
3- face recognition.

if examples or sample commands that would be appreciated!

I have Ubuntu Linux with python and tensor flow environment ready.

appreciate your steps to go forward

pt-br
pt-br commented Aug 24, 2019

I've ran into this issue for a couple hours and I ended up editing the dist library adding two new functions called fetchVideo and bufferToVideo that works pretty much like the fetchImage and bufferToImage functions.

I'll leave it here to help somebody else with the same issue and in case someone wants to include it on future releases.

face-api.js

...
exports.fetchVideo = fetc
nicechester
nicechester commented Jun 13, 2019

load_csv line can be since there's columns_to_ignore param's supported

data, labels = load_csv('titanic_dataset.csv', target_column=0, columns_to_ignore=[2, 7], categorical_labels=True, n_classes=2)

and we don't need to do that in preprocess()

def preprocess(passengers):
    for i in range(len(passengers)):
        passengers[i][1] = 1. if passengers[i][1] == 'female' else 0.
pranavsharma
pranavsharma commented Feb 27, 2020

Several parts of the op sec like the main op description, attributes, input and output descriptions become part of the binary that consumes ONNX e.g. onnxruntime causing an increase in its size due to strings that take no part in the execution of the model or its verification.

Setting __ONNX_NO_DOC_STRINGS doesn't really help here since (1) it's not used in the SetDoc(string) overload (s

Created by Google Brain Team

Released November 9, 2015

Organization
tensorflow
Website
www.tensorflow.org
Wikipedia
Wikipedia
You can’t perform that action at this time.