-
Notifications
You must be signed in to change notification settings - Fork 45.5k
Description
When running the officials/mnist/mnist.py there is an error message:
Traceback (most recent call last):
File "mnist.py", line 261, in
main(argv=sys.argv)
File "mnist.py", line 225, in main
mnist_classifier.train(input_fn=train_input_fn, hooks=train_hooks)
File "/Users/yangsong/tensorflow/lib/python3.5/site-packages/tensorflow/python/estimator/estimator.py", line 355, in train
loss = self._train_model(input_fn, hooks, saving_listeners)
File "/Users/yangsong/tensorflow/lib/python3.5/site-packages/tensorflow/python/estimator/estimator.py", line 824, in _train_model
features, labels, model_fn_lib.ModeKeys.TRAIN, self.config)
File "/Users/yangsong/tensorflow/lib/python3.5/site-packages/tensorflow/python/estimator/estimator.py", line 805, in _call_model_fn
model_fn_results = self._model_fn(features=features, **kwargs)
File "mnist.py", line 89, in model_fn
model = create_model(params['data_format'])
File "mnist.py", line 83, in create_model
l.Dense(10)
File "/Users/yangsong/tensorflow/lib/python3.5/site-packages/tensorflow/python/keras/_impl/keras/engine/sequential.py", line 120, in init
self.add(layer)
File "/Users/yangsong/tensorflow/lib/python3.5/site-packages/tensorflow/python/keras/_impl/keras/engine/sequential.py", line 163, in add
raise ValueError('The first layer in a '
ValueError: The first layer in a Sequential model must get an input_shape
argument.
Please go to Stack Overflow for help and support:
http://stackoverflow.com/questions/tagged/tensorflow
Also, please understand that many of the models included in this repository are experimental and research-style code. If you open a GitHub issue, here is our policy:
- It must be a bug, a feature request, or a significant problem with documentation (for small docs fixes please send a PR instead).
- The form below must be filled out.
Here's why we have that policy: TensorFlow developers respond to issues. We want to focus on work that benefits the whole community, e.g., fixing bugs and adding features. Support only helps individuals. GitHub also notifies thousands of people when issues are filed. We want them to see you communicating an interesting problem, rather than being redirected to Stack Overflow.
System information
- What is the top-level directory of the model you are using:
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow):
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04):
- TensorFlow installed from (source or binary):
- TensorFlow version (use command below):
- Bazel version (if compiling from source):
- CUDA/cuDNN version:
- GPU model and memory:
- Exact command to reproduce:
You can collect some of this information using our environment capture script:
https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh
You can obtain the TensorFlow version with
python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)"
Describe the problem
Describe the problem clearly here. Be sure to convey here why it's a bug in TensorFlow or a feature request.
Source code / logs
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached. Try to provide a reproducible test case that is the bare minimum necessary to generate the problem.