Quentin Gallouédec commited on
Commit
5794d27
1 Parent(s): 11901f5

Stochastic eval

Browse files
README.md CHANGED
@@ -16,7 +16,7 @@ model-index:
16
  type: MiniGrid-GoToDoor-5x5-v0
17
  metrics:
18
  - type: mean_reward
19
- value: 0.57 +/- 0.47
20
  name: mean_reward
21
  verified: false
22
  ---
 
16
  type: MiniGrid-GoToDoor-5x5-v0
17
  metrics:
18
  - type: mean_reward
19
+ value: 0.56 +/- 0.46
20
  name: mean_reward
21
  verified: false
22
  ---
ppo-MiniGrid-GoToDoor-5x5-v0.zip CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:62b09c5b139277e56bb3a08e33d62ff6dbe7df2979901f58d93ffc2d9ef6773a
3
  size 4390445
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:712eee210fb04ed176a01056f02d075b5d9d65ea931ea6a511995c1c4e1fe9cf
3
  size 4390445
ppo-MiniGrid-GoToDoor-5x5-v0/data CHANGED
@@ -4,20 +4,20 @@
4
  ":serialized:": "gAWVOwAAAAAAAACMIXN0YWJsZV9iYXNlbGluZXMzLmNvbW1vbi5wb2xpY2llc5SMEUFjdG9yQ3JpdGljUG9saWN5lJOULg==",
5
  "__module__": "stable_baselines3.common.policies",
6
  "__doc__": "\n Policy class for actor-critic algorithms (has both policy and value prediction).\n Used by A2C, PPO and the likes.\n\n :param observation_space: Observation space\n :param action_space: Action space\n :param lr_schedule: Learning rate schedule (could be constant)\n :param net_arch: The specification of the policy and value networks.\n :param activation_fn: Activation function\n :param ortho_init: Whether to use or not orthogonal initialization\n :param use_sde: Whether to use State Dependent Exploration or not\n :param log_std_init: Initial value for the log standard deviation\n :param full_std: Whether to use (n_features x n_actions) parameters\n for the std instead of only (n_features,) when using gSDE\n :param use_expln: Use ``expln()`` function instead of ``exp()`` to ensure\n a positive standard deviation (cf paper). It allows to keep variance\n above zero and prevent it from growing too fast. In practice, ``exp()`` is usually enough.\n :param squash_output: Whether to squash the output using a tanh function,\n this allows to ensure boundaries when using gSDE.\n :param features_extractor_class: Features extractor to use.\n :param features_extractor_kwargs: Keyword arguments\n to pass to the features extractor.\n :param share_features_extractor: If True, the features extractor is shared between the policy and value networks.\n :param normalize_images: Whether to normalize images or not,\n dividing by 255.0 (True by default)\n :param optimizer_class: The optimizer to use,\n ``th.optim.Adam`` by default\n :param optimizer_kwargs: Additional keyword arguments,\n excluding the learning rate, to pass to the optimizer\n ",
7
- "__init__": "<function ActorCriticPolicy.__init__ at 0x7fedeb495040>",
8
- "_get_constructor_parameters": "<function ActorCriticPolicy._get_constructor_parameters at 0x7fedeb4950d0>",
9
- "reset_noise": "<function ActorCriticPolicy.reset_noise at 0x7fedeb495160>",
10
- "_build_mlp_extractor": "<function ActorCriticPolicy._build_mlp_extractor at 0x7fedeb4951f0>",
11
- "_build": "<function ActorCriticPolicy._build at 0x7fedeb495280>",
12
- "forward": "<function ActorCriticPolicy.forward at 0x7fedeb495310>",
13
- "extract_features": "<function ActorCriticPolicy.extract_features at 0x7fedeb4953a0>",
14
- "_get_action_dist_from_latent": "<function ActorCriticPolicy._get_action_dist_from_latent at 0x7fedeb495430>",
15
- "_predict": "<function ActorCriticPolicy._predict at 0x7fedeb4954c0>",
16
- "evaluate_actions": "<function ActorCriticPolicy.evaluate_actions at 0x7fedeb495550>",
17
- "get_distribution": "<function ActorCriticPolicy.get_distribution at 0x7fedeb4955e0>",
18
- "predict_values": "<function ActorCriticPolicy.predict_values at 0x7fedeb495670>",
19
  "__abstractmethods__": "frozenset()",
20
- "_abc_impl": "<_abc._abc_data object at 0x7fedeb873fc0>"
21
  },
22
  "verbose": 1,
23
  "policy_kwargs": {},
 
4
  ":serialized:": "gAWVOwAAAAAAAACMIXN0YWJsZV9iYXNlbGluZXMzLmNvbW1vbi5wb2xpY2llc5SMEUFjdG9yQ3JpdGljUG9saWN5lJOULg==",
5
  "__module__": "stable_baselines3.common.policies",
6
  "__doc__": "\n Policy class for actor-critic algorithms (has both policy and value prediction).\n Used by A2C, PPO and the likes.\n\n :param observation_space: Observation space\n :param action_space: Action space\n :param lr_schedule: Learning rate schedule (could be constant)\n :param net_arch: The specification of the policy and value networks.\n :param activation_fn: Activation function\n :param ortho_init: Whether to use or not orthogonal initialization\n :param use_sde: Whether to use State Dependent Exploration or not\n :param log_std_init: Initial value for the log standard deviation\n :param full_std: Whether to use (n_features x n_actions) parameters\n for the std instead of only (n_features,) when using gSDE\n :param use_expln: Use ``expln()`` function instead of ``exp()`` to ensure\n a positive standard deviation (cf paper). It allows to keep variance\n above zero and prevent it from growing too fast. In practice, ``exp()`` is usually enough.\n :param squash_output: Whether to squash the output using a tanh function,\n this allows to ensure boundaries when using gSDE.\n :param features_extractor_class: Features extractor to use.\n :param features_extractor_kwargs: Keyword arguments\n to pass to the features extractor.\n :param share_features_extractor: If True, the features extractor is shared between the policy and value networks.\n :param normalize_images: Whether to normalize images or not,\n dividing by 255.0 (True by default)\n :param optimizer_class: The optimizer to use,\n ``th.optim.Adam`` by default\n :param optimizer_kwargs: Additional keyword arguments,\n excluding the learning rate, to pass to the optimizer\n ",
7
+ "__init__": "<function ActorCriticPolicy.__init__ at 0x7f17183d4040>",
8
+ "_get_constructor_parameters": "<function ActorCriticPolicy._get_constructor_parameters at 0x7f17183d40d0>",
9
+ "reset_noise": "<function ActorCriticPolicy.reset_noise at 0x7f17183d4160>",
10
+ "_build_mlp_extractor": "<function ActorCriticPolicy._build_mlp_extractor at 0x7f17183d41f0>",
11
+ "_build": "<function ActorCriticPolicy._build at 0x7f17183d4280>",
12
+ "forward": "<function ActorCriticPolicy.forward at 0x7f17183d4310>",
13
+ "extract_features": "<function ActorCriticPolicy.extract_features at 0x7f17183d43a0>",
14
+ "_get_action_dist_from_latent": "<function ActorCriticPolicy._get_action_dist_from_latent at 0x7f17183d4430>",
15
+ "_predict": "<function ActorCriticPolicy._predict at 0x7f17183d44c0>",
16
+ "evaluate_actions": "<function ActorCriticPolicy.evaluate_actions at 0x7f17183d4550>",
17
+ "get_distribution": "<function ActorCriticPolicy.get_distribution at 0x7f17183d45e0>",
18
+ "predict_values": "<function ActorCriticPolicy.predict_values at 0x7f17183d4670>",
19
  "__abstractmethods__": "frozenset()",
20
+ "_abc_impl": "<_abc._abc_data object at 0x7f1718759300>"
21
  },
22
  "verbose": 1,
23
  "policy_kwargs": {},
replay.mp4 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4156e36ccfde559b6ed4bb0fa1065286a69c16223e973402b443b0cebb6d4a49
3
- size 249945
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a214232861cc64b6ef3c26ad67b6a04881952ff074d68fb229be61b095f136b1
3
+ size 318534
results.json CHANGED
@@ -1 +1 @@
1
- {"mean_reward": 0.57192, "std_reward": 0.4675448658685068, "is_deterministic": true, "n_eval_episodes": 10, "eval_datetime": "2023-03-31T18:22:28.381498"}
 
1
+ {"mean_reward": 0.56328, "std_reward": 0.4621846488147351, "is_deterministic": false, "n_eval_episodes": 10, "eval_datetime": "2023-03-31T20:12:27.571470"}