arth-shukla commited on
Commit
49c03ef
·
1 Parent(s): 4d455b3

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ viewer: false
4
+ ---
5
+
6
+
7
+ # Model Checkpoints for ManiSkill-HAB
8
+
9
+ RL (SAC, PPO) and IL (BC) baselines for ManiSkill-HAB. Each checkpoint includes a torch checkpoint `policy.pt` (model, optimizer/scheduler state, other trainable parameters) and a train config `config.yml` with hyperparemeters and env kwargs.
10
+
11
+ RL Pick/Place policies are trained using SAC due to improved performance, while Open/Close is trained with PPO for wall-time efficiency (see Appendix A.4.3). All-object RL policies are under `all/` directories, while per-object policies are under directories labeled by the object name. IL policies do not have per-object Pick/Place variants.
12
+
13
+
14
+ To download these policies, run the following:
15
+ ```
16
+ huggingface-cli download arth-shukla/mshab_checkpoints --local-dir mshab_checkpoints
17
+ ```