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
I have train it success but how to run? How to see the visible answer?
The text was updated successfully, but these errors were encountered:
import pickle
path = "" agent_num = 3
print("....................") print("state_reward_all") print("....................")
f = open('../report/' + path + '/stat_reward_all.pkl', 'rb') info = pickle.load(f, encoding='iso-8859-1') # Soso for i in info: print(i)
Sorry, something went wrong.
To see the visual environment, use the --display option with train.py but this is not recommended during training.
--display
train.py
What you should do is after finishing training, load the saved policy visually as below:
train.py --restore --display
This is assuming that you used the default save_dir otherwise use the option --load-dir to indicate your custom load_dir
save_dir
--load-dir
No branches or pull requests
I have train it success but how to run? How to see the visible answer?
The text was updated successfully, but these errors were encountered: