Upload 6 files
Browse files- _stable_baselines3_version +1 -0
- data +96 -0
- policy.optimizer.pth +3 -0
- policy.pth +3 -0
- pytorch_variables.pth +3 -0
- system_info.txt +7 -0
_stable_baselines3_version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
1.7.0
|
data
ADDED
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"policy_class": {
|
3 |
+
":type:": "<class 'typing.ABCMeta'>",
|
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 0x0000017A6121EEF0>",
|
8 |
+
"_get_constructor_parameters": "<function ActorCriticPolicy._get_constructor_parameters at 0x0000017A6121EF80>",
|
9 |
+
"reset_noise": "<function ActorCriticPolicy.reset_noise at 0x0000017A6121F010>",
|
10 |
+
"_build_mlp_extractor": "<function ActorCriticPolicy._build_mlp_extractor at 0x0000017A6121F0A0>",
|
11 |
+
"_build": "<function ActorCriticPolicy._build at 0x0000017A6121F130>",
|
12 |
+
"forward": "<function ActorCriticPolicy.forward at 0x0000017A6121F1C0>",
|
13 |
+
"extract_features": "<function ActorCriticPolicy.extract_features at 0x0000017A6121F250>",
|
14 |
+
"_get_action_dist_from_latent": "<function ActorCriticPolicy._get_action_dist_from_latent at 0x0000017A6121F2E0>",
|
15 |
+
"_predict": "<function ActorCriticPolicy._predict at 0x0000017A6121F370>",
|
16 |
+
"evaluate_actions": "<function ActorCriticPolicy.evaluate_actions at 0x0000017A6121F400>",
|
17 |
+
"get_distribution": "<function ActorCriticPolicy.get_distribution at 0x0000017A6121F490>",
|
18 |
+
"predict_values": "<function ActorCriticPolicy.predict_values at 0x0000017A6121F520>",
|
19 |
+
"__abstractmethods__": "frozenset()",
|
20 |
+
"_abc_impl": "<_abc._abc_data object at 0x0000017A60005300>"
|
21 |
+
},
|
22 |
+
"verbose": 1,
|
23 |
+
"policy_kwargs": {
|
24 |
+
":type:": "<class 'dict'>",
|
25 |
+
":serialized:": "gAWVgQAAAAAAAAB9lCiMD29wdGltaXplcl9jbGFzc5SME3RvcmNoLm9wdGltLnJtc3Byb3CUjAdSTVNwcm9wlJOUjBBvcHRpbWl6ZXJfa3dhcmdzlH2UKIwFYWxwaGGURz/vrhR64UeujANlcHOURz7k+LWI42jxjAx3ZWlnaHRfZGVjYXmUSwB1dS4=",
|
26 |
+
"optimizer_class": "<class 'torch.optim.rmsprop.RMSprop'>",
|
27 |
+
"optimizer_kwargs": {
|
28 |
+
"alpha": 0.99,
|
29 |
+
"eps": 1e-05,
|
30 |
+
"weight_decay": 0
|
31 |
+
}
|
32 |
+
},
|
33 |
+
"observation_space": {
|
34 |
+
":type:": "<class 'gym.spaces.box.Box'>",
|
35 |
+
":serialized:": "gAWVdwEAAAAAAACMDmd5bS5zcGFjZXMuYm94lIwDQm94lJOUKYGUfZQojAVkdHlwZZSMBW51bXB5lGgFk5SMAmY0lImIh5RSlChLA4wBPJROTk5K/////0r/////SwB0lGKMBl9zaGFwZZRLBIWUjANsb3eUjBJudW1weS5jb3JlLm51bWVyaWOUjAtfZnJvbWJ1ZmZlcpSTlCiWEAAAAAAAAACamZnA//9//1B31r7//3//lGgKSwSFlIwBQ5R0lFKUjARoaWdolGgSKJYQAAAAAAAAAJqZmUD//39/UHfWPv//f3+UaApLBIWUaBV0lFKUjA1ib3VuZGVkX2JlbG93lGgSKJYEAAAAAAAAAAEBAQGUaAeMAmIxlImIh5RSlChLA4wBfJROTk5K/////0r/////SwB0lGJLBIWUaBV0lFKUjA1ib3VuZGVkX2Fib3ZllGgSKJYEAAAAAAAAAAEBAQGUaCFLBIWUaBV0lFKUjApfbnBfcmFuZG9tlE51Yi4=",
|
36 |
+
"dtype": "float32",
|
37 |
+
"_shape": [
|
38 |
+
4
|
39 |
+
],
|
40 |
+
"low": "[-4.8000002e+00 -3.4028235e+38 -4.1887903e-01 -3.4028235e+38]",
|
41 |
+
"high": "[4.8000002e+00 3.4028235e+38 4.1887903e-01 3.4028235e+38]",
|
42 |
+
"bounded_below": "[ True True True True]",
|
43 |
+
"bounded_above": "[ True True True True]",
|
44 |
+
"_np_random": null
|
45 |
+
},
|
46 |
+
"action_space": {
|
47 |
+
":type:": "<class 'gym.spaces.discrete.Discrete'>",
|
48 |
+
":serialized:": "gAWVggAAAAAAAACME2d5bS5zcGFjZXMuZGlzY3JldGWUjAhEaXNjcmV0ZZSTlCmBlH2UKIwBbpRLAowGX3NoYXBllCmMBWR0eXBllIwFbnVtcHmUaAeTlIwCaTiUiYiHlFKUKEsDjAE8lE5OTkr/////Sv////9LAHSUYowKX25wX3JhbmRvbZROdWIu",
|
49 |
+
"n": 2,
|
50 |
+
"_shape": [],
|
51 |
+
"dtype": "int64",
|
52 |
+
"_np_random": null
|
53 |
+
},
|
54 |
+
"n_envs": 1,
|
55 |
+
"num_timesteps": 1000,
|
56 |
+
"_total_timesteps": 1000,
|
57 |
+
"_num_timesteps_at_start": 0,
|
58 |
+
"seed": null,
|
59 |
+
"action_noise": null,
|
60 |
+
"start_time": 1676220973590136300,
|
61 |
+
"learning_rate": 0.0007,
|
62 |
+
"tensorboard_log": null,
|
63 |
+
"lr_schedule": {
|
64 |
+
":type:": "<class 'function'>",
|
65 |
+
":serialized:": "gAWV3AIAAAAAAACMF2Nsb3VkcGlja2xlLmNsb3VkcGlja2xllIwOX21ha2VfZnVuY3Rpb26Uk5QoaACMDV9idWlsdGluX3R5cGWUk5SMCENvZGVUeXBllIWUUpQoSwFLAEsASwFLAUsTQwSIAFMAlE6FlCmMAV+UhZSMqkM6XFVzZXJzXE1TSVxBcHBEYXRhXExvY2FsXFBhY2thZ2VzXFB5dGhvblNvZnR3YXJlRm91bmRhdGlvbi5QeXRob24uMy4xMF9xYno1bjJrZnJhOHAwXExvY2FsQ2FjaGVcbG9jYWwtcGFja2FnZXNcUHl0aG9uMzEwXHNpdGUtcGFja2FnZXNcc3RhYmxlX2Jhc2VsaW5lczNcY29tbW9uXHV0aWxzLnB5lIwEZnVuY5RLgkMCBAGUjAN2YWyUhZQpdJRSlH2UKIwLX19wYWNrYWdlX1+UjBhzdGFibGVfYmFzZWxpbmVzMy5jb21tb26UjAhfX25hbWVfX5SMHnN0YWJsZV9iYXNlbGluZXMzLmNvbW1vbi51dGlsc5SMCF9fZmlsZV9flGgMdU5OaACMEF9tYWtlX2VtcHR5X2NlbGyUk5QpUpSFlHSUUpSMHGNsb3VkcGlja2xlLmNsb3VkcGlja2xlX2Zhc3SUjBJfZnVuY3Rpb25fc2V0c3RhdGWUk5RoHn2UfZQoaBZoDYwMX19xdWFsbmFtZV9flIwZY29uc3RhbnRfZm4uPGxvY2Fscz4uZnVuY5SMD19fYW5ub3RhdGlvbnNfX5R9lIwOX19rd2RlZmF1bHRzX1+UTowMX19kZWZhdWx0c19flE6MCl9fbW9kdWxlX1+UaBeMB19fZG9jX1+UTowLX19jbG9zdXJlX1+UaACMCl9tYWtlX2NlbGyUk5RHP0bwBo24useFlFKUhZSMF19jbG91ZHBpY2tsZV9zdWJtb2R1bGVzlF2UjAtfX2dsb2JhbHNfX5R9lHWGlIZSMC4="
|
66 |
+
},
|
67 |
+
"_last_obs": {
|
68 |
+
":type:": "<class 'numpy.ndarray'>",
|
69 |
+
":serialized:": "gAWVhQAAAAAAAACMEm51bXB5LmNvcmUubnVtZXJpY5SMC19mcm9tYnVmZmVylJOUKJYQAAAAAAAAAHXrhT6JYT4/lj2MO4YGE7+UjAVudW1weZSMBWR0eXBllJOUjAJmNJSJiIeUUpQoSwOMATyUTk5OSv////9K/////0sAdJRiSwFLBIaUjAFDlHSUUpQu"
|
70 |
+
},
|
71 |
+
"_last_episode_starts": {
|
72 |
+
":type:": "<class 'numpy.ndarray'>",
|
73 |
+
":serialized:": "gAWVdAAAAAAAAACMEm51bXB5LmNvcmUubnVtZXJpY5SMC19mcm9tYnVmZmVylJOUKJYBAAAAAAAAAACUjAVudW1weZSMBWR0eXBllJOUjAJiMZSJiIeUUpQoSwOMAXyUTk5OSv////9K/////0sAdJRiSwGFlIwBQ5R0lFKULg=="
|
74 |
+
},
|
75 |
+
"_last_original_obs": null,
|
76 |
+
"_episode_num": 0,
|
77 |
+
"use_sde": false,
|
78 |
+
"sde_sample_freq": -1,
|
79 |
+
"_current_progress_remaining": 0.0,
|
80 |
+
"ep_info_buffer": {
|
81 |
+
":type:": "<class 'collections.deque'>",
|
82 |
+
":serialized:": "gAWVIAAAAAAAAACMC2NvbGxlY3Rpb25zlIwFZGVxdWWUk5QpS2SGlFKULg=="
|
83 |
+
},
|
84 |
+
"ep_success_buffer": {
|
85 |
+
":type:": "<class 'collections.deque'>",
|
86 |
+
":serialized:": "gAWVIAAAAAAAAACMC2NvbGxlY3Rpb25zlIwFZGVxdWWUk5QpS2SGlFKULg=="
|
87 |
+
},
|
88 |
+
"_n_updates": 20000,
|
89 |
+
"n_steps": 5,
|
90 |
+
"gamma": 0.99,
|
91 |
+
"gae_lambda": 1.0,
|
92 |
+
"ent_coef": 0.0,
|
93 |
+
"vf_coef": 0.5,
|
94 |
+
"max_grad_norm": 0.5,
|
95 |
+
"normalize_advantage": false
|
96 |
+
}
|
policy.optimizer.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:857ebd2f7fc06a3fa582fbe64edc24e206e1e556727b2ea6a25120f6abf0b67f
|
3 |
+
size 40065
|
policy.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0fd4e6cb4c4f097c5ba5f721d6ad064f8f53606402800299c51c11c81c35af71
|
3 |
+
size 40833
|
pytorch_variables.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d030ad8db708280fcae77d87e973102039acd23a11bdecc3db8eb6c0ac940ee1
|
3 |
+
size 431
|
system_info.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
- OS: Windows-10-10.0.19045-SP0 10.0.19045
|
2 |
+
- Python: 3.10.10
|
3 |
+
- Stable-Baselines3: 1.7.0
|
4 |
+
- PyTorch: 1.13.1+cu116
|
5 |
+
- GPU Enabled: True
|
6 |
+
- Numpy: 1.24.0
|
7 |
+
- Gym: 0.21.0
|