Rami commited on
Commit
a93df88
1 Parent(s): 7a4e27a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: apache-2.0
4
+ model-index:
5
+ - name: CartPole-v1__functional_dqn__0__1671479574
6
+ ---
7
+ DQN model applied to the this discrete environments CartPole-v1
8
+ ## Model Description
9
+ The model was trained from the CleanRl library using the DQN algorithm
10
+ ## Intended Use & Limitation
11
+ The model is intended to be used for the following environments CartPole-v1
12
+ and understand the implication of Quantization on this type of model from a pretrained state## Training Procdure
13
+ ### Training Hyperparameters
14
+ The folloing hyperparameters were used during training:
15
+ - exp_name: functional_dqn
16
+ - seed: 0
17
+ - torch_deterministic: True
18
+ - cuda: False
19
+ - track: True
20
+ - wandb_project_name: cleanRL
21
+ - wandb_entity: compress_rl
22
+ - capture_video: False
23
+ - env_id: CartPole-v1
24
+ - total_timesteps: 500000
25
+ - learning_rate: 0.00025
26
+ - buffer_size: 10000
27
+ - gamma: 0.99
28
+ - target_network_frequency: 500
29
+ - batch_size: 128
30
+ - start_e: 1
31
+ - end_e: 0.05
32
+ - exploration_fraction: 0.5
33
+ - learning_starts: 10000
34
+ - train_frequency: 10
35
+ - optimizer: Adan
36
+ - wandb_project: cleanrl
37
+ ### Framework and version
38
+ Pytorch 1.12.1+cu102
39
+ gym 0.23.1
40
+ Weights and Biases 0.13.3
41
+ Hugging Face Hub 0.11.1