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
This error pops up everytime i try to run 'run-demo.py' from demo branch.
command: python3 run-demo.py Traceback (most recent call last): File "run-demo.py", line 16, in <module> demo = Demo() File "/home/vendy/Desktop/kwgraph/bi-att-flow-demo/basic/demo_cli.py", line 117, in __init__ config.out_dir = os.path.join(config.out_base_dir, config.model_name, str(config.run_id).zfill(2)) File "/home/vendy/.local/lib/python3.6/site-packages/tensorflow_core/python/platform/flags.py", line 88, in __setattr__ return self.__dict__['__wrapped'].__setattr__(name, value) File "/home/vendy/.local/lib/python3.6/site-packages/absl/flags/_flagvalues.py", line 499, in __setattr__ return self._set_unknown_flag(name, value) File "/home/vendy/.local/lib/python3.6/site-packages/absl/flags/_flagvalues.py", line 375, in _set_unknown_flag raise _exceptions.UnrecognizedFlagError(name, value) absl.flags._exceptions.UnrecognizedFlagError: Unknown command line flag 'out_dir'
Traceback (most recent call last): File "run-demo.py", line 16, in <module> demo = Demo() File "/home/vendy/Desktop/kwgraph/bi-att-flow-demo/basic/demo_cli.py", line 117, in __init__ config.out_dir = os.path.join(config.out_base_dir, config.model_name, str(config.run_id).zfill(2)) File "/home/vendy/.local/lib/python3.6/site-packages/tensorflow_core/python/platform/flags.py", line 88, in __setattr__ return self.__dict__['__wrapped'].__setattr__(name, value) File "/home/vendy/.local/lib/python3.6/site-packages/absl/flags/_flagvalues.py", line 499, in __setattr__ return self._set_unknown_flag(name, value) File "/home/vendy/.local/lib/python3.6/site-packages/absl/flags/_flagvalues.py", line 375, in _set_unknown_flag raise _exceptions.UnrecognizedFlagError(name, value) absl.flags._exceptions.UnrecognizedFlagError: Unknown command line flag 'out_dir'
The text was updated successfully, but these errors were encountered:
@vendyv Did you manage to get this to work? I am facing the same issue
Sorry, something went wrong.
add this in cli.py
flags.DEFINE_string("out_dir", "", "") flags.DEFINE_string("save_dir", "", "") flags.DEFINE_string("eval_dir", "", "") flags.DEFINE_string("answer_dir", "", "")
No branches or pull requests
This error pops up everytime i try to run 'run-demo.py' from demo branch.
command: python3 run-demo.py
Traceback (most recent call last): File "run-demo.py", line 16, in <module> demo = Demo() File "/home/vendy/Desktop/kwgraph/bi-att-flow-demo/basic/demo_cli.py", line 117, in __init__ config.out_dir = os.path.join(config.out_base_dir, config.model_name, str(config.run_id).zfill(2)) File "/home/vendy/.local/lib/python3.6/site-packages/tensorflow_core/python/platform/flags.py", line 88, in __setattr__ return self.__dict__['__wrapped'].__setattr__(name, value) File "/home/vendy/.local/lib/python3.6/site-packages/absl/flags/_flagvalues.py", line 499, in __setattr__ return self._set_unknown_flag(name, value) File "/home/vendy/.local/lib/python3.6/site-packages/absl/flags/_flagvalues.py", line 375, in _set_unknown_flag raise _exceptions.UnrecognizedFlagError(name, value) absl.flags._exceptions.UnrecognizedFlagError: Unknown command line flag 'out_dir'
The text was updated successfully, but these errors were encountered: