Rami commited on
Commit
c881908
1 Parent(s): a1a69dd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: apache-2.0
4
+ model-index:
5
+ - name: CartPole-v1__functional_dqn__0__1671474891
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
+ ```
15
+ The folloing hyperparameters were used during training:
16
+ - exp_name: functional_dqn
17
+ - seed: 0
18
+ - torch_deterministic: True
19
+ - cuda: False
20
+ - track: True
21
+ - wandb_project_name: cleanRL
22
+ - wandb_entity: compress_rl
23
+ - capture_video: False
24
+ - env_id: CartPole-v1
25
+ - total_timesteps: 500000
26
+ - learning_rate: 0.00025
27
+ - buffer_size: 10000
28
+ - gamma: 0.99
29
+ - target_network_frequency: 500
30
+ - batch_size: 128
31
+ - start_e: 1
32
+ - end_e: 0.05
33
+ - exploration_fraction: 0.5
34
+ - learning_starts: 10000
35
+ - train_frequency: 10
36
+ - optimizer: Adam
37
+ - wandb_project: cleanrl
38
+ ```
39
+ ### Framework and version
40
+ ```
41
+ Pytorch 1.12.1+cu102
42
+ gym 0.23.1
43
+ Weights and Biases 0.13.3
44
+ Hugging Face Hub 0.11.1