We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
255 if len(sys.argv) > 1: 256 --> 257 f = numpy.load(sys.argv[1]) 258 259 initial_weights = [f[n] for n in sorted(f.files,
C:\Program Files\Anaconda3\envs\tensorflow\lib\site-packages\numpy\lib\npyio.py in load(file, mmap_mode, allow_pickle, fix_imports, encoding) 370 own_fid = False 371 if isinstance(file, basestring): --> 372 fid = open(file, "rb") 373 own_fid = True 374 elif is_pathlib_path(file):
FileNotFoundError: [Errno 2] No such file or directory: '-f'
plz help me
The text was updated successfully, but these errors were encountered:
No branches or pull requests
255 if len(sys.argv) > 1:
256
--> 257 f = numpy.load(sys.argv[1])
258
259 initial_weights = [f[n] for n in sorted(f.files,
C:\Program Files\Anaconda3\envs\tensorflow\lib\site-packages\numpy\lib\npyio.py in load(file, mmap_mode, allow_pickle, fix_imports, encoding)
370 own_fid = False
371 if isinstance(file, basestring):
--> 372 fid = open(file, "rb")
373 own_fid = True
374 elif is_pathlib_path(file):
FileNotFoundError: [Errno 2] No such file or directory: '-f'
plz help me
The text was updated successfully, but these errors were encountered: