deep-learning-models
deep-learning-models copied to clipboard
Keras code and weights files for popular deep learning models.
hi, for `No space left on device: '/home/xm1/.keras/models'` so I want to change the path of the model ``` /usr/local/lib/python3.5/dist-packages/keras_applications/resnet50.py:265: UserWarning: The output shape of `ResNet50(include_top=False)` has been changed since...
import tensorflow as tf from tensorflow.keras.layers import Dense from tensorflow.keras.backend import categorical_crossentropy from tensorflow.keras.models import Model import time (x_train, y_train), (x_test, y_test) = tf.keras.datasets.mnist.load_data() net = tf.keras.models.Sequential([tf.keras.layers.Input(shape=(784,)),Dense(128, activation='relu'), Dense(128, activation='relu'),Dense(10,...
Hi everyone! I trained an inception model with my custom images (dataset of 8.000 images), then saved it. And when I try to make predictions with it, whatever is the...
Hello. I have a problem while creating a resnet50 network. I used your script to create my network, but I have this error: "ValueError: Negative dimension size caused by subtracting...
this code: ` model=InceptionV3(include_top=False, weights='imagenet', input_tensor=None, input_shape=None, pooling=None)` always return this error > Exception: URL fetch failure on https://github.com/fchollet/deep-learning-models/releases/download/v0.5/inception_v3_weights_tf_dim_ordering_tf_kernels_notop.h5: None -- [Errno 10060] So I want to manully download the...
Hello, I'm wondering in a fully open minded perspective if there is some place for keras models (or at least, their architecture) related to these "family of methods" in the...
Dear all, I follow post in "https://blog.keras.io/keras-as-a-simplified-interface-to-tensorflow-tutorial.html" The little modified code I use is: ---------------------------------------------------------------------------------------------------------------------------------- import tensorflow as tf from tensorflow.python.keras.layers import Dense from tensorflow.python.keras.backend import categorical_crossentropy from tensorflow.examples.tutorials.mnist import...
Hello, I am replacing a Convolution layer with a Locally connected layer in ResNet (with Faster RCNN). Tensorflow imports this layer from keras and and it says that the dimensions...
This implementation has the same error (missing ZeroPadding2D after stem) that the version in keras-application had, which has been fixed. See issue: https://github.com/keras-team/keras-applications/issues/30