-
Notifications
You must be signed in to change notification settings - Fork 5
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
Output #36
Comments
It does, see this function: https://github.com/CogComp/zoe/blob/master/main.py#L79 |
Thanks for your answer! Unfortunately, I tried to open the runlog file, which I presumed would save the experiment results. But I'm having trouble doing so and get the error `import pickle infile.close() print(new_dict) ModuleNotFoundError Traceback (most recent call last) ModuleNotFoundError: No module named 'zoe_utils'` |
Sorry about the late reply. One possible explanation is that you need to import the modules here https://github.com/CogComp/zoe/blob/master/main.py#L5-L9, because the objects in the pickle file rely on the data structures. |
Ah sorry, I forgot to reply. There are no built-in methods for that, but it should be fairly easy to print whatever actual contents are there. All data are stored as a Sentence object, which you can find in zoe_utils.py. |
Does the system save the results of the experiments? Is the terminal output the only output?
The text was updated successfully, but these errors were encountered: