-
Notifications
You must be signed in to change notification settings - Fork 11
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
1 parent
b4c6e30
commit 3ce289c
Showing
3 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
File renamed without changes.
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
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/bin/sh | ||
#This is minimal unit test to check, whether the current version of myGym is able to train. | ||
# It will do simle train and evaluate in 2 minutes. If success rate is above 30 percdents, it works. | ||
rm -r ./trained_models/check | ||
python train.py --config ./configs/train_check.json --steps 20000 | ||
python test.py -cfg ./trained_models/check/reach_table_kuka_joints_gt_ppo2/train.json | ||
python train.py --config ./configs/train_reach.json --algo ppo2 --max_episode_steps 256 --algo_steps 256 --steps 20000 --eval_episodes 10 --logdir ./trained_models/check | ||
python test.py -cfg ./trained_models/check/reach_table_kuka_joints_ppo2/train.json | ||
rm -r ./trained_models/check |