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:
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.
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 clearly here. Be sure to convey here why it's a bug in TensorFlow or a feature request.
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.
Have you tried the following:
export PYTHONPATH=$PYTHONPATH:pwd:pwd/slim
before and after the 2 pwd you need to put the ` character. somehow the github comment marks this text differently and doesn't show it.
You need to export the environmental variables every time you open a new terminal in that environment.
In root folder use python setup.py install (research/setup.py)
@MaesIT There are ` chars before and after pwd if you look at the latest document.
Closing this as the answer seems clear.
Most helpful comment
Have you tried the following:
From tensorflow/models/research/
export PYTHONPATH=$PYTHONPATH:
pwd:pwd/slimbefore and after the 2 pwd you need to put the ` character. somehow the github comment marks this text differently and doesn't show it.
You need to export the environmental variables every time you open a new terminal in that environment.