Open smyoder opened 2 years ago
Hi @smyoder , Thank you for your interest in our work!
This indeed sounds like a Windows compatibility issue with file paths.
Is this the full error that you're seeing? If not, can you paste here the full error?
Thanks for your prompt response. Here is the full error.
`Traceback (most recent call last): File "C:\Users\User\AppData\Local\Programs\Python\Python39\lib\site-packages\tensorflow\python\client\session.py", line 1375, in _do_call return fn(*args) File "C:\Users\User\AppData\Local\Programs\Python\Python39\lib\site-packages\tensorflow\python\client\session.py", line 1359, in _run_fn return self._call_tf_sessionrun(options, feed_dict, fetch_list, File "C:\Users\User\AppData\Local\Programs\Python\Python39\lib\site-packages\tensorflow\python\client\session.py", line 1451, in _call_tf_sessionrun return tf_session.TF_SessionRun_wrapper(self._session, options, feed_dict, tensorflow.python.framework.errors_impl.NotFoundError: NewRandomAccessFile failed to Create/Open: : The system cannot find the path specified. ; No such process [[{{node IteratorGetNext_1}}]]
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\User\
Errors may have originated from an input operation.
Input Source operations connected to node IteratorGetNext_1:
IteratorV2_1 (defined at \
Original stack trace for 'IteratorGetNext_1':
File "\
Hi, It looks like the data path was not found, or at least, not parsed well on windows.
I suggest running on Linux. Best, Uri
Hello,
Whenever I attempt to continue training a pre-trained model using
python code2vec.py --load <model path> --data <data path> --save <save path>
I get the following error:File "C:\Users\User\AppData\Local\Programs\Python\Python39\lib\site-packages\tensorflow\python\client\session.py", line 1377, in _do_call return fn(*args) File "C:\Users\User\AppData\Local\Programs\Python\Python39\lib\site-packages\tensorflow\python\client\session.py", line 1360, in _run_fn return self._call_tf_sessionrun(options, feed_dict, fetch_list, File "C:\Users\User\AppData\Local\Programs\Python\Python39\lib\site-packages\tensorflow\python\client\session.py", line 1453, in _call_tf_sessionrun return tf_session.TF_SessionRun_wrapper(self._session, options, feed_dict, tensorflow.python.framework.errors_impl.NotFoundError: NewRandomAccessFile failed to Create/Open: : The system cannot find the path specified. ; No such process [[{{node IteratorGetNext_1}}]]
This error occurs both for the pre-trained model available for download here and a model I trained from scratch on my own data using train.sh.
I am running on Windows.