deep-learning-keras-tensorflow icon indicating copy to clipboard operation
deep-learning-keras-tensorflow copied to clipboard

Introduction to Deep Neural Networks with Keras and Tensorflow

Results 13 deep-learning-keras-tensorflow issues
Sort by recently updated
recently updated
newest added

LinkedIn's URL wasn't working. So, made a minor changes to the url

My model is defined as follows: def create_model(): #input input_layer=Input(shape=(max_squence_len,),name="x_seq") embedding_layer=Embedding(input_dim=max_token_num,output_dim=embedding_dim) (input_layer) #conv layers convs=[] filter_sizes=[2,3,4] for fs in filter_sizes: l_conv=Conv1D(filters=50,kernel_size=fs,activation="relu")(embedding_layer) l_pool=MaxPooling1D(pool_size=2)(l_conv) l_pool=Flatten()(l_pool) convs.append(l_pool) merge=concatenate(convs,axis=1) out=Dropout(0.5)(merge) output=Dense(32, activation='relu')(out) output=Dense(units=31, activation='softmax')(output)...

what is the value of sentence_matrix and i am unable to import data_helpers.. can you please help me

UserWarning: Theano does not recognise this flag: lib.cnmem warnings.warn('Theano does not recognise this flag: {0}'.format(key))

Fixed typo in 1.1 Introduction - Deep Learning and ANN

I guess you have video recorded? may you share this video?

Hi, Valerio, I am still new to anaconda and was trying to build the conda env on Mac terminal by `conda env create -f deep-learning-osx.yml ` And got the error...

Hello! I have a dataset of images in which the edges are manually labeled with different colors. I am planning to use deep learning on these training images. Then, I...

is it possible to make the vgg19 model complete missing parts of an image according to its category ? thanks