Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 743 Bytes

special_topics.md

File metadata and controls

22 lines (13 loc) · 743 Bytes

Special Topics

Obstacle Avoidance

The default log file output from Deep Racer does not contain information about the location of obstacles. However Deep Racer Guru can currently analyze static obstacle avoidance if you provide the extra information in your reward function.

If you are using the sibling product Deep Racer Framework (DRF) then this is already done for you.

Otherwise you must add the following lines into your reward function:

    if params['steps'] == 2:
        print("DRG-OBJECTS:", params['objects_location'])

Testing a New Reward Function

TODO

Testing Different Discount Factors

TODO

Parsing Debug Output

TODO