-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
44 additions
and
7 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Skill 1: Go to Object (in the same room) | ||
python -m scripts.train --algo a2c --env BabyAI-GoToObj-v0 --text --frames 500000 | ||
|
||
# Skill 2: Open door (in the same room) | ||
python -m scripts.train --algo a2c --env BabyAI-OpenDoor-v0 --text --frames 500000 | ||
|
||
# Skill 3: Pickup an item (in the same room) | ||
python -m scripts.train --algo a2c --env BabyAI-PickupDist-v0 --text --frames 500000 | ||
|
||
# Skill 4: Put an item next to an item (in the same room) | ||
python -m scripts.train --algo a2c --env BabyAI-PutNextLocal-v0 --text --frames 500000 | ||
|
||
# Skill 5: Unlock a door (in the same room) | ||
python -m scripts.train --algo a2c --env BabyAI-UnlockLocal-v0 --text --frames 500000 | ||
|
||
# Skill 6: Find an object (in a random room) | ||
python -m scripts.train --algo a2c --env BabyAI-FindObjS5-v0 --text --frames 500000 | ||
|
||
# Skill 7: Go to the green object (in a random room) | ||
python3 -m scripts.train --algo a2c --env MiniGrid-FourRooms-v0 --text --frames 500000 | ||
|
||
|
||
# Need at least one skill that enables the agent to go to a different room. | ||
# Skill 6 or 7? | ||
|
||
|
||
|