Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
michalzajac-ml committed Sep 8, 2023
1 parent 387ddfa commit 83d4ffe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/tutorials/8_train_sqil.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"After we collected our expert trajectories, it's time to set up our behavior cloning algorithm."
"After we collected our expert trajectories, it's time to set up our imitation algorithm."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/8a_train_sqil_sac.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"After we collected our expert trajectories, it's time to set up our behavior cloning algorithm."
"After we collected our expert trajectories, it's time to set up our imitation algorithm."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tests/algorithms/test_sqil.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_demos(
cache = pytestconfig.cache
assert cache is not None
return expert_trajectories.make_expert_transition_loader(
cache_dir=cache.mkdir(env_name.replace("/", "_")),
cache_dir=cache.mkdir("experts"),
batch_size=4,
expert_data_type=data_type,
env_name=env_name,
Expand Down

0 comments on commit 83d4ffe

Please sign in to comment.