CoreyMorris commited on
Commit
94ebb7f
1 Parent(s): f871501

attempt to fix video

Browse files
replay.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a35dfa0790bc8428c45c3801edd348396867dde12a52bc02d07cad6ae26016b4
3
+ size 311668
results.json CHANGED
@@ -1 +1 @@
1
- {"mean_reward": -0.27896940000000003, "std_reward": 0.10137786808588943, "is_deterministic": true, "n_eval_episodes": 10, "eval_datetime": "2023-01-20T23:52:22.139350"}
 
1
+ {"mean_reward": -0.27896940000000003, "std_reward": 0.10137786808588943, "is_deterministic": true, "n_eval_episodes": 10, "eval_datetime": "2023-01-21T00:25:47.974831"}
tqc-PandaReachDense-v2.zip CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b682296d96c2e79478c16a8163d58d3df19c00bbdab01018ecac7a0335a627fd
3
  size 227805
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21a748e2ca0e36b9eaaf0e8162df355dc9984b0322ec596b2ab585c7f0912f67
3
  size 227805
tqc-PandaReachDense-v2/data CHANGED
@@ -4,9 +4,9 @@
4
  ":serialized:": "gAWVMQAAAAAAAACMGHNiM19jb250cmliLnRxYy5wb2xpY2llc5SMEE11bHRpSW5wdXRQb2xpY3mUk5Qu",
5
  "__module__": "sb3_contrib.tqc.policies",
6
  "__doc__": "\n Policy class (with both actor and critic) for TQC.\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 use_sde: Whether to use State Dependent Exploration or not\n :param log_std_init: Initial value for the log standard deviation\n :param use_expln: Use ``expln()`` function instead of ``exp()`` when using gSDE 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 clip_mean: Clip the mean output when using gSDE to avoid numerical instability.\n :param features_extractor_class: Features extractor to use.\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 :param n_quantiles: Number of quantiles for the critic.\n :param n_critics: Number of critic networks to create.\n :param share_features_extractor: Whether to share or not the features extractor\n between the actor and the critic (this saves computation time)\n ",
7
- "__init__": "<function MultiInputPolicy.__init__ at 0x7f9ceb83b280>",
8
  "__abstractmethods__": "frozenset()",
9
- "_abc_impl": "<_abc_data object at 0x7f9ceb8366f0>"
10
  },
11
  "verbose": 1,
12
  "policy_kwargs": {
@@ -91,24 +91,24 @@
91
  ":serialized:": "gAWVPwAAAAAAAACMJ3N0YWJsZV9iYXNlbGluZXMzLmhlci5oZXJfcmVwbGF5X2J1ZmZlcpSMD0hlclJlcGxheUJ1ZmZlcpSTlC4=",
92
  "__module__": "stable_baselines3.her.her_replay_buffer",
93
  "__doc__": "\n Hindsight Experience Replay (HER) buffer.\n Paper: https://arxiv.org/abs/1707.01495\n\n .. warning::\n\n For performance reasons, the maximum number of steps per episodes must be specified.\n In most cases, it will be inferred if you specify ``max_episode_steps`` when registering the environment\n or if you use a ``gym.wrappers.TimeLimit`` (and ``env.spec`` is not None).\n Otherwise, you can directly pass ``max_episode_length`` to the replay buffer constructor.\n\n\n Replay buffer for sampling HER (Hindsight Experience Replay) transitions.\n In the online sampling case, these new transitions will not be saved in the replay buffer\n and will only be created at sampling time.\n\n :param env: The training environment\n :param buffer_size: The size of the buffer measured in transitions.\n :param max_episode_length: The maximum length of an episode. If not specified,\n it will be automatically inferred if the environment uses a ``gym.wrappers.TimeLimit`` wrapper.\n :param goal_selection_strategy: Strategy for sampling goals for replay.\n One of ['episode', 'final', 'future']\n :param device: PyTorch device\n :param n_sampled_goal: Number of virtual transitions to create per real transition,\n by sampling new goals.\n :param handle_timeout_termination: Handle timeout termination (due to timelimit)\n separately and treat the task as infinite horizon task.\n https://github.com/DLR-RM/stable-baselines3/issues/284\n ",
94
- "__init__": "<function HerReplayBuffer.__init__ at 0x7f9cebce09d0>",
95
- "__getstate__": "<function HerReplayBuffer.__getstate__ at 0x7f9cebce0a60>",
96
- "__setstate__": "<function HerReplayBuffer.__setstate__ at 0x7f9cebce0af0>",
97
- "set_env": "<function HerReplayBuffer.set_env at 0x7f9cebce0b80>",
98
- "_get_samples": "<function HerReplayBuffer._get_samples at 0x7f9cebce0c10>",
99
- "sample": "<function HerReplayBuffer.sample at 0x7f9cebce0ca0>",
100
- "_sample_offline": "<function HerReplayBuffer._sample_offline at 0x7f9cebce0d30>",
101
- "sample_goals": "<function HerReplayBuffer.sample_goals at 0x7f9cebce0dc0>",
102
- "_sample_transitions": "<function HerReplayBuffer._sample_transitions at 0x7f9cebce0e50>",
103
- "add": "<function HerReplayBuffer.add at 0x7f9cebce0ee0>",
104
- "store_episode": "<function HerReplayBuffer.store_episode at 0x7f9cebce0f70>",
105
- "_sample_her_transitions": "<function HerReplayBuffer._sample_her_transitions at 0x7f9cebcf2040>",
106
- "n_episodes_stored": "<property object at 0x7f9cebced590>",
107
- "size": "<function HerReplayBuffer.size at 0x7f9cebcf2160>",
108
- "reset": "<function HerReplayBuffer.reset at 0x7f9cebcf21f0>",
109
- "truncate_last_trajectory": "<function HerReplayBuffer.truncate_last_trajectory at 0x7f9cebcf2280>",
110
  "__abstractmethods__": "frozenset()",
111
- "_abc_impl": "<_abc_data object at 0x7f9cebcee1e0>"
112
  },
113
  "replay_buffer_kwargs": {
114
  "online_sampling": true,
 
4
  ":serialized:": "gAWVMQAAAAAAAACMGHNiM19jb250cmliLnRxYy5wb2xpY2llc5SMEE11bHRpSW5wdXRQb2xpY3mUk5Qu",
5
  "__module__": "sb3_contrib.tqc.policies",
6
  "__doc__": "\n Policy class (with both actor and critic) for TQC.\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 use_sde: Whether to use State Dependent Exploration or not\n :param log_std_init: Initial value for the log standard deviation\n :param use_expln: Use ``expln()`` function instead of ``exp()`` when using gSDE 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 clip_mean: Clip the mean output when using gSDE to avoid numerical instability.\n :param features_extractor_class: Features extractor to use.\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 :param n_quantiles: Number of quantiles for the critic.\n :param n_critics: Number of critic networks to create.\n :param share_features_extractor: Whether to share or not the features extractor\n between the actor and the critic (this saves computation time)\n ",
7
+ "__init__": "<function MultiInputPolicy.__init__ at 0x7fe577bff280>",
8
  "__abstractmethods__": "frozenset()",
9
+ "_abc_impl": "<_abc_data object at 0x7fe577bf96f0>"
10
  },
11
  "verbose": 1,
12
  "policy_kwargs": {
 
91
  ":serialized:": "gAWVPwAAAAAAAACMJ3N0YWJsZV9iYXNlbGluZXMzLmhlci5oZXJfcmVwbGF5X2J1ZmZlcpSMD0hlclJlcGxheUJ1ZmZlcpSTlC4=",
92
  "__module__": "stable_baselines3.her.her_replay_buffer",
93
  "__doc__": "\n Hindsight Experience Replay (HER) buffer.\n Paper: https://arxiv.org/abs/1707.01495\n\n .. warning::\n\n For performance reasons, the maximum number of steps per episodes must be specified.\n In most cases, it will be inferred if you specify ``max_episode_steps`` when registering the environment\n or if you use a ``gym.wrappers.TimeLimit`` (and ``env.spec`` is not None).\n Otherwise, you can directly pass ``max_episode_length`` to the replay buffer constructor.\n\n\n Replay buffer for sampling HER (Hindsight Experience Replay) transitions.\n In the online sampling case, these new transitions will not be saved in the replay buffer\n and will only be created at sampling time.\n\n :param env: The training environment\n :param buffer_size: The size of the buffer measured in transitions.\n :param max_episode_length: The maximum length of an episode. If not specified,\n it will be automatically inferred if the environment uses a ``gym.wrappers.TimeLimit`` wrapper.\n :param goal_selection_strategy: Strategy for sampling goals for replay.\n One of ['episode', 'final', 'future']\n :param device: PyTorch device\n :param n_sampled_goal: Number of virtual transitions to create per real transition,\n by sampling new goals.\n :param handle_timeout_termination: Handle timeout termination (due to timelimit)\n separately and treat the task as infinite horizon task.\n https://github.com/DLR-RM/stable-baselines3/issues/284\n ",
94
+ "__init__": "<function HerReplayBuffer.__init__ at 0x7fe5780a29d0>",
95
+ "__getstate__": "<function HerReplayBuffer.__getstate__ at 0x7fe5780a2a60>",
96
+ "__setstate__": "<function HerReplayBuffer.__setstate__ at 0x7fe5780a2af0>",
97
+ "set_env": "<function HerReplayBuffer.set_env at 0x7fe5780a2b80>",
98
+ "_get_samples": "<function HerReplayBuffer._get_samples at 0x7fe5780a2c10>",
99
+ "sample": "<function HerReplayBuffer.sample at 0x7fe5780a2ca0>",
100
+ "_sample_offline": "<function HerReplayBuffer._sample_offline at 0x7fe5780a2d30>",
101
+ "sample_goals": "<function HerReplayBuffer.sample_goals at 0x7fe5780a2dc0>",
102
+ "_sample_transitions": "<function HerReplayBuffer._sample_transitions at 0x7fe5780a2e50>",
103
+ "add": "<function HerReplayBuffer.add at 0x7fe5780a2ee0>",
104
+ "store_episode": "<function HerReplayBuffer.store_episode at 0x7fe5780a2f70>",
105
+ "_sample_her_transitions": "<function HerReplayBuffer._sample_her_transitions at 0x7fe5780b5040>",
106
+ "n_episodes_stored": "<property object at 0x7fe5780af9a0>",
107
+ "size": "<function HerReplayBuffer.size at 0x7fe5780b5160>",
108
+ "reset": "<function HerReplayBuffer.reset at 0x7fe5780b51f0>",
109
+ "truncate_last_trajectory": "<function HerReplayBuffer.truncate_last_trajectory at 0x7fe5780b5280>",
110
  "__abstractmethods__": "frozenset()",
111
+ "_abc_impl": "<_abc_data object at 0x7fe5780b11e0>"
112
  },
113
  "replay_buffer_kwargs": {
114
  "online_sampling": true,