/RL_course

Primary LanguagePython

Setup

You can run this code on your own machine or on Google Colab.

  1. Local option: If you choose to run locally, you will need to install MuJoCo and some Python packages; see installation.md for instructions.
  2. Colab: The first few sections of the notebook will install all required dependencies. You can try out the Colab option by clicking the badge below:

Open In Colab

Complete the code

Fill in sections marked with TODO. In particular, see

Look for the sections marked with HW1 to see how the edits you make will be used.

Some other files that you may find relevant

Run the code

Tip: While debugging, you probably want to keep the flag --video_log_freq -1 which will disable video logging and speed up the experiment. However, feel free to remove it to save videos of your awesome policy!

If running on Colab, adjust the #@params in the Args class according to the commmand line arguments above.

Behavior Cloning

Run command for problem BC.1:

cd cds_rl

python scripts/run_hw1.py \
    --expert_policy_file policies/experts/Ant.pkl \
    --env_name Ant-v2 --exp_name bc_ant --n_iter 1 \
    --expert_data expert_data/expert_data_Ant-v2.pkl
    --video_log_freq -1

DAgger

Run command for DA.1:

cd cds_rl

python scripts/run_hw1.py \
    --expert_policy_file policies/experts/Ant.pkl \
    --env_name Ant-v2 --exp_name dagger_ant --n_iter 10 \
    --do_dagger --expert_data expert_data/expert_data_Ant-v2.pkl \
    --video_log_freq -1

Note the --do_dagger flag, and the higher value for n_iter.

Visualization the saved tensorboard event file

You can visualize your runs using tensorboard:

tensorboard --logdir data

You will see scalar summaries as well as videos of your trained policies (in the 'images' tab).

You can choose to visualize specific runs with a comma-separated list:

tensorboard --logdir data/run1,data/run2,data/run3...

If running on Colab, you will be using the %tensorboard line magic to do the same thing; see the notebook for more details.

Credits

This homework is based on Berkeley CS285 Deep RL Course HW1.