-
Notifications
You must be signed in to change notification settings - Fork 45.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tensorflow.python.framework.errors_impl.NotFoundError: ; No such file or directory #3954
Comments
@qlzh727 Can You figure out this Error? |
Sorry for the late reply. From the error log, mostly likely it is failed to find your local file during copy (symlink might cause the issue). Since I don't have access to your local directory, I cannot reproduce it. Another alternative to try is specify the absolute path instead of relative path in the commandline arg. |
Thank You for your Reply Indeed I tried using absolute path my directories are in my external HDD, |
From your command line arg, it seems that you are using "--pipeline", which I don't think is correct. The valid value is "--pipeline_config_path" |
Assume the last comment help you fix the issue, closing for now. |
I encounter the same error and the problem was that I had a typo in "--pipeline_config_path". |
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.
System information
/media/habeshageeks/DATA/auto_proj/lisa
No
Linux Ubuntu 16.04
python object_detection/train.py --logtostderr --pipeline lisa/lisa/experiments/training/faster_rcnn_lisa.config --train_dir lisa/lisa/experiments/training
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
When I run
python object_detection/train.py --logtostderr --pipeline lisa/lisa/experiments/training/faster_rcnn_lisa.config --train_dir lisa/lisa/experiments/training
It shows me an error withTraceback (most recent call last): File "object_detection/train.py", line 167, in <module> tf.app.run() File "/home/habeshageeks/.virtualenvs/ml/lib/python3.5/site-packages/tensorflow/python/platform/app.py", line 126, in run _sys.exit(main(argv)) File "object_detection/train.py", line 107, in main overwrite=True) File "/home/habeshageeks/.virtualenvs/ml/lib/python3.5/site-packages/tensorflow/python/lib/io/file_io.py", line 392, in copy compat.as_bytes(oldpath), compat.as_bytes(newpath), overwrite, status) File "/home/habeshageeks/.virtualenvs/ml/lib/python3.5/site-packages/tensorflow/python/framework/errors_impl.py", line 516, in __exit__ c_api.TF_GetCode(self.status.status)) tensorflow.python.framework.errors_impl.NotFoundError: ; No such file or directory
The Path Lisa is Sim Linked with the Research Directory
Source code / logs
python object_detection/train.py --logtostderr --pipeline lisa/lisa/experiments/training/faster_rcnn_lisa.config --train_dir lisa/lisa/experiments/training WARNING:tensorflow:From /home/habeshageeks/.virtualenvs/ml/lib/python3.5/site-packages/tensorflow/contrib/learn/python/learn/datasets/base.py:198: retry (from tensorflow.contrib.learn.python.learn.datasets.base) is deprecated and will be removed in a future version. Instructions for updating: Use the retry module or similar alternatives. Traceback (most recent call last): File "object_detection/train.py", line 167, in <module> tf.app.run() File "/home/habeshageeks/.virtualenvs/ml/lib/python3.5/site-packages/tensorflow/python/platform/app.py", line 126, in run _sys.exit(main(argv)) File "object_detection/train.py", line 107, in main overwrite=True) File "/home/habeshageeks/.virtualenvs/ml/lib/python3.5/site-packages/tensorflow/python/lib/io/file_io.py", line 392, in copy compat.as_bytes(oldpath), compat.as_bytes(newpath), overwrite, status) File "/home/habeshageeks/.virtualenvs/ml/lib/python3.5/site-packages/tensorflow/python/framework/errors_impl.py", line 516, in __exit__ c_api.TF_GetCode(self.status.status)) tensorflow.python.framework.errors_impl.NotFoundError: ; No such file or directory
The text was updated successfully, but these errors were encountered: