SaiResearch commited on
Commit
b751d3a
·
verified ·
1 Parent(s): b424fc5

Create config.json

Browse files
Files changed (1) hide show
  1. mujoco/ant/small/config.json +23 -0
mujoco/ant/small/config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "env_id": "Ant-v5",
3
+ "framework": "gymnasium",
4
+ "num_frames": 10000,
5
+ "num_envs": 64,
6
+ "observation": {
7
+ "low": "None",
8
+ "high": "None",
9
+ "shape": [105],
10
+ "dtype": "float32"
11
+ },
12
+ "action": {
13
+ "type": "continuous",
14
+ "shape": [8],
15
+ "low": -1.0,
16
+ "high": 1.0,
17
+ "dtype": "float32"
18
+ },
19
+ "seed_start": 0,
20
+ "seed_strategy": "sequential",
21
+ "vectorized": true,
22
+ "vectorization_type": "SyncVectorEnv"
23
+ }