Dabe commited on
Commit
98d8581
1 Parent(s): 7349164

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -2
README.md CHANGED
@@ -31,6 +31,7 @@ Some of the hyperparameters used are listed below:
31
  | --- | --- |
32
  | `Learning rate` | 0.0002 |
33
  | `Batch size` | 128 |
 
34
 
35
  ## Usage (with Stable-baselines3)
36
 
@@ -98,6 +99,4 @@ mean_reward, std_reward = evaluate_policy(model, eval_env, n_eval_episodes=10, d
98
  # Guardo los resultados de la evaluacion del modelo
99
  with open('Historial/' + model_name + '.txt', 'w') as f:
100
  f.write(f"mean_reward={mean_reward:.2f} +/- {std_reward}")
101
-
102
- ...
103
  ```
 
31
  | --- | --- |
32
  | `Learning rate` | 0.0002 |
33
  | `Batch size` | 128 |
34
+ | `Buffer size` | 100000 |
35
 
36
  ## Usage (with Stable-baselines3)
37
 
 
99
  # Guardo los resultados de la evaluacion del modelo
100
  with open('Historial/' + model_name + '.txt', 'w') as f:
101
  f.write(f"mean_reward={mean_reward:.2f} +/- {std_reward}")
 
 
102
  ```