jren123 commited on
Commit
276aa6d
1 Parent(s): 908bc38

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ This repo contains a SAC checkpoint trained via [StableBaselines3](https://github.com/DLR-RM/stable-baselines3/blob/c6c660e51bdad1a60e3770e121a88dcb666e7dbf/stable_baselines3/sac/sac.py#L254) on `Ant-v4` from gymnasium with the recommended hyperparameters from [RLZoo](https://github.com/DLR-RM/rl-baselines3-zoo/blob/27e081eb24419ee843ae1c329b0482db823c9fc1/hyperparams/sac.yml#L197):
2
+
3
+ ```
4
+ model = SAC("MlpPolicy", env, learning_starts=10000)
5
+ ```
6
+
7
+ The versions are:
8
+ ```
9
+ python==3.12.3
10
+ gymnasium==0.29.1
11
+ stable_baselines3==2.3.2
12
+ torch==2.3.1
13
+ ```