Viewing results.
See original GitHub issueThanks for putting together this library!
I have installed the library on a headless server, along with MongoDB and Visdom. Is there a way to view the results after running from the .yaml configs?
I am testing it out with the example
vel examples-configs/rl/atari/a2c/breakout_a2c.yaml train
Everything trains fine, but then when I look at the logfile at vel/output/openai/breakout_a2c/0/log.txt, it only saves the following:
Logging to /home/ygx/src/vel/output/openai/breakout_a2c/0
And the progress.csv at that directory level is empty.
When looking at the yaml config at https://github.com/yngtodd/vel/blob/master/examples-configs/rl/atari/a2c/breakout_a2c.yaml#L57, I see that it is saving a video. Where is that stored?
Thanks!
Issue Analytics
- State:
- Created 5 years ago
- Comments:13 (13 by maintainers)
Top Results From Across the Web
3.7 Viewing Results
The Results pane displays SQL command results as HTML formatted table. The number of rows returned appears after the output, and the time...
Read more >View results - Microsoft Support
Open the form for which you want to review the results, and then select the Responses tab. Select View results to see individual...
Read more >Viewing results in the results view - IBM
The Software Analyzer Results view tab: lists the analysis configurations that you are working on and those that you have already run; displays...
Read more >Result viewer - Google Help
Patent results contain full text, figures, the original PDF version, metadata and citations. For viewing figures, the I key toggles the full image...
Read more >Viewing results - TAO Testing
Click View on the right of the Test-taker whose results you want to see. A results table will appear. The box at the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Yes, that’s entirely possible but that requires to rework a bit evaluation command. Currently in the file
evaluate_env_command.pyI roll out environments and gather only the final reward:You’d need to change the logic to gather rewards of each step, aggregate and then plot. To get more meaningful results you probably would also like to disable reward clipping when env is created which is used for training.
Just ran the most recent changes, and it works like a dream!
Thank you for taking the time to help me out!