underspirit commited on
Commit
574aa2a
·
verified ·
1 Parent(s): ed6a2db
Huggy/Huggy-199992.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7650e12f076442a2cc0775d863dc2921ca2bcc5af35c62d272a5521ae7f56cbb
3
+ size 2274020
Huggy/Huggy-199992.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e34a1edc80838403e7e24b363e698b6daeaf62c6b1988b0a620e3ccdc6504790
3
+ size 13509859
Huggy/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d208fd1f09106d81034f43cdd306917f3ffd630ee7ed09f9ee62b4dad376abbf
3
+ size 13509685
Huggy/events.out.tfevents.1763310355.1e5076c78a99.8506.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec7a88280002fc1059194aacd382f78e991b3e4800e4c66804aa0a3c640fadb3
3
+ size 14961
README.md CHANGED
@@ -1,37 +1,35 @@
1
  ---
2
- library_name: stable-baselines3
3
  tags:
4
- - LunarLander-v2
5
  - deep-reinforcement-learning
6
  - reinforcement-learning
7
- - stable-baselines3
8
- model-index:
9
- - name: PPO
10
- results:
11
- - task:
12
- type: reinforcement-learning
13
- name: reinforcement-learning
14
- dataset:
15
- name: LunarLander-v2
16
- type: LunarLander-v2
17
- metrics:
18
- - type: mean_reward
19
- value: 269.91 +/- 19.60
20
- name: mean_reward
21
- verified: false
22
  ---
23
 
24
- # **PPO** Agent playing **LunarLander-v2**
25
- This is a trained model of a **PPO** agent playing **LunarLander-v2**
26
- using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
27
 
28
- ## Usage (with Stable-baselines3)
29
- TODO: Add your code
30
 
 
 
 
 
 
31
 
32
- ```python
33
- from stable_baselines3 import ...
34
- from huggingface_sb3 import load_from_hub
 
35
 
36
- ...
37
- ```
 
 
 
 
 
 
 
1
  ---
2
+ library_name: ml-agents
3
  tags:
4
+ - Huggy
5
  - deep-reinforcement-learning
6
  - reinforcement-learning
7
+ - ML-Agents-Huggy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ---
9
 
10
+ # **ppo** Agent playing **Huggy**
11
+ This is a trained model of a **ppo** agent playing **Huggy**
12
+ using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
13
 
14
+ ## Usage (with ML-Agents)
15
+ The Documentation: https://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/
16
 
17
+ We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
18
+ - A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your
19
+ browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction
20
+ - A *longer tutorial* to understand how works ML-Agents:
21
+ https://huggingface.co/learn/deep-rl-course/unit5/introduction
22
 
23
+ ### Resume the training
24
+ ```bash
25
+ mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume
26
+ ```
27
 
28
+ ### Watch your Agent play
29
+ You can watch your agent **playing directly in your browser**
30
+
31
+ 1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity
32
+ 2. Step 1: Find your model_id: underspirit/learn-rl
33
+ 3. Step 2: Select your *.nn /*.onnx file
34
+ 4. Click on Watch the agent play 👀
35
+
config.json CHANGED
@@ -1 +1 @@
1
- {"policy_class": {":type:": "<class 'abc.ABCMeta'>", ":serialized:": "gAWVOwAAAAAAAACMIXN0YWJsZV9iYXNlbGluZXMzLmNvbW1vbi5wb2xpY2llc5SMEUFjdG9yQ3JpdGljUG9saWN5lJOULg==", "__module__": "stable_baselines3.common.policies", "__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 ", "__init__": "<function ActorCriticPolicy.__init__ at 0x7c11c52a1260>", "_get_constructor_parameters": "<function ActorCriticPolicy._get_constructor_parameters at 0x7c11c52a1300>", "reset_noise": "<function ActorCriticPolicy.reset_noise at 0x7c11c52a13a0>", "_build_mlp_extractor": "<function ActorCriticPolicy._build_mlp_extractor at 0x7c11c52a1440>", "_build": "<function ActorCriticPolicy._build at 0x7c11c52a14e0>", "forward": "<function ActorCriticPolicy.forward at 0x7c11c52a1580>", "extract_features": "<function ActorCriticPolicy.extract_features at 0x7c11c52a1620>", "_get_action_dist_from_latent": "<function ActorCriticPolicy._get_action_dist_from_latent at 0x7c11c52a16c0>", "_predict": "<function ActorCriticPolicy._predict at 0x7c11c52a1760>", "evaluate_actions": "<function ActorCriticPolicy.evaluate_actions at 0x7c11c52a1800>", "get_distribution": "<function ActorCriticPolicy.get_distribution at 0x7c11c52a18a0>", "predict_values": "<function ActorCriticPolicy.predict_values at 0x7c11c52a1940>", "__abstractmethods__": "frozenset()", "_abc_impl": "<_abc._abc_data object at 0x7c11c5208d00>"}, "verbose": 1, "policy_kwargs": {}, "num_timesteps": 1015808, "_total_timesteps": 1000000, "_num_timesteps_at_start": 0, "seed": null, "action_noise": null, "start_time": 1763226638712980923, "learning_rate": 0.0003, "tensorboard_log": null, "_last_obs": {":type:": "<class 'numpy.ndarray'>", ":serialized:": "gAWVdgIAAAAAAACME251bXB5Ll9jb3JlLm51bWVyaWOUjAtfZnJvbWJ1ZmZlcpSTlCiWAAIAAAAAAACm/Mu9LqudP+c9GL79lqC+WguAvu9ojL0AAAAAAAAAAJDRyz7FCCM/6iZyvvXl474YVKA+vcsLvgAAAAAAAAAA3Tdovvo1iz+ayJy+p36fvnBOwb4OI5e9AAAAAAAAAADN8ys+KUFCvMSblDw2GNu6CLWsvRKQs7sAAIA/AACAP7qcHj6631I+h4Svvqc8g77mmem9E691PAAAAAAAAAAAxkptPoemoD/juNo+ClAXv79fUj4tBFs+AAAAAAAAAACz0ge9UsixuUa4jzUJm4svaU++u7Mqs7QAAIA/AACAP805AT5BnAY+MtcdvpBrQL4zLQM94kCquwAAAAAAAAAAiiKMPmC58T797YO+pXmBvruDJj5EoiC+AAAAAAAAAABm5vw7ri/DuqXZHbxd1pc8oJy7u8pIgz0AAIA/AACAP2bWUrwU7KW6vxCpOgKlLLb87DO5RRPCuQAAgD8AAIA/bbw1Pi5jgD9WbYY+ZRDWvi/ZNT7qUJQ9AAAAAAAAAABz2vk9fhPCPa8CNr5N1Cm+KCsXvOVekzsAAAAAAAAAADOVHj5mP4E/rQx8Pn0w7L6Y/TU+WCc9PQAAAAAAAAAAAD1UPRDkvj6dhYC7GrCOvgLGajylM9g8AAAAAAAAAADamG++ZNqKP6zURL7x57S+iBTqvvXub70AAAAAAAAAAJSMBW51bXB5lIwFZHR5cGWUk5SMAmY0lImIh5RSlChLA4wBPJROTk5K/////0r/////SwB0lGJLEEsIhpSMAUOUdJRSlC4="}, "_last_episode_starts": {":type:": "<class 'numpy.ndarray'>", ":serialized:": "gAWVhAAAAAAAAACME251bXB5Ll9jb3JlLm51bWVyaWOUjAtfZnJvbWJ1ZmZlcpSTlCiWEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlIwFbnVtcHmUjAVkdHlwZZSTlIwCYjGUiYiHlFKUKEsDjAF8lE5OTkr/////Sv////9LAHSUYksQhZSMAUOUdJRSlC4="}, "_last_original_obs": null, "_episode_num": 0, "use_sde": false, "sde_sample_freq": -1, "_current_progress_remaining": -0.015808000000000044, "_stats_window_size": 100, "ep_info_buffer": {":type:": "<class 'collections.deque'>", ":serialized:": "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"}, "ep_success_buffer": {":type:": "<class 'collections.deque'>", ":serialized:": "gAWVIAAAAAAAAACMC2NvbGxlY3Rpb25zlIwFZGVxdWWUk5QpS2SGlFKULg=="}, "_n_updates": 248, "observation_space": {":type:": "<class 'gymnasium.spaces.box.Box'>", ":serialized:": "gAWVdwIAAAAAAACMFGd5bW5hc2l1bS5zcGFjZXMuYm94lIwDQm94lJOUKYGUfZQojAVkdHlwZZSMBW51bXB5lIwFZHR5cGWUk5SMAmY0lImIh5RSlChLA4wBPJROTk5K/////0r/////SwB0lGKMDWJvdW5kZWRfYmVsb3eUjBNudW1weS5fY29yZS5udW1lcmljlIwLX2Zyb21idWZmZXKUk5QolggAAAAAAAAAAQEBAQEBAQGUaAiMAmIxlImIh5RSlChLA4wBfJROTk5K/////0r/////SwB0lGJLCIWUjAFDlHSUUpSMDWJvdW5kZWRfYWJvdmWUaBEolggAAAAAAAAAAQEBAQEBAQGUaBVLCIWUaBl0lFKUjAZfc2hhcGWUSwiFlIwDbG93lGgRKJYgAAAAAAAAAAAAtMIAALTCAACgwAAAoMDbD0nAAACgwAAAAIAAAACAlGgLSwiFlGgZdJRSlIwEaGlnaJRoESiWIAAAAAAAAAAAALRCAAC0QgAAoEAAAKBA2w9JQAAAoEAAAIA/AACAP5RoC0sIhZRoGXSUUpSMCGxvd19yZXBylIxbWy05MC4gICAgICAgIC05MC4gICAgICAgICAtNS4gICAgICAgICAtNS4gICAgICAgICAtMy4xNDE1OTI3ICAtNS4KICAtMC4gICAgICAgICAtMC4gICAgICAgXZSMCWhpZ2hfcmVwcpSMU1s5MC4gICAgICAgIDkwLiAgICAgICAgIDUuICAgICAgICAgNS4gICAgICAgICAzLjE0MTU5MjcgIDUuCiAgMS4gICAgICAgICAxLiAgICAgICBdlIwKX25wX3JhbmRvbZROdWIu", "dtype": "float32", "bounded_below": "[ True True True True True True True True]", "bounded_above": "[ True True True True True True True True]", "_shape": [8], "low": "[-90. -90. -5. -5. -3.1415927 -5.\n -0. -0. ]", "high": "[90. 90. 5. 5. 3.1415927 5.\n 1. 1. ]", "low_repr": "[-90. -90. -5. -5. -3.1415927 -5.\n -0. -0. ]", "high_repr": "[90. 90. 5. 5. 3.1415927 5.\n 1. 1. ]", "_np_random": null}, "action_space": {":type:": "<class 'gymnasium.spaces.discrete.Discrete'>", ":serialized:": "gAWV3AAAAAAAAACMGWd5bW5hc2l1bS5zcGFjZXMuZGlzY3JldGWUjAhEaXNjcmV0ZZSTlCmBlH2UKIwBbpSMFm51bXB5Ll9jb3JlLm11bHRpYXJyYXmUjAZzY2FsYXKUk5SMBW51bXB5lIwFZHR5cGWUk5SMAmk4lImIh5RSlChLA4wBPJROTk5K/////0r/////SwB0lGJDCAQAAAAAAAAAlIaUUpSMBXN0YXJ0lGgIaA5DCAAAAAAAAAAAlIaUUpSMBl9zaGFwZZQpjAVkdHlwZZRoDowKX25wX3JhbmRvbZROdWIu", "n": "4", "start": "0", "_shape": [], "dtype": "int64", "_np_random": null}, "n_envs": 16, "n_steps": 1024, "gamma": 0.999, "gae_lambda": 0.98, "ent_coef": 0.01, "vf_coef": 0.5, "max_grad_norm": 0.5, "batch_size": 64, "n_epochs": 4, "clip_range": {":type:": "<class 'function'>", ":serialized:": "gAWV1gIAAAAAAACMF2Nsb3VkcGlja2xlLmNsb3VkcGlja2xllIwOX21ha2VfZnVuY3Rpb26Uk5QoaACMDV9idWlsdGluX3R5cGWUk5SMCENvZGVUeXBllIWUUpQoSwFLAEsASwFLAUsTQwiVAZcAiQFTAJROhZQpjAFflIWUjEkvdXNyL2xvY2FsL2xpYi9weXRob24zLjExL2Rpc3QtcGFja2FnZXMvc3RhYmxlX2Jhc2VsaW5lczMvY29tbW9uL3V0aWxzLnB5lIwEZnVuY5SMGWNvbnN0YW50X2ZuLjxsb2NhbHM+LmZ1bmOUS4RDCPiAANgPEogKlEMAlIwDdmFslIWUKXSUUpR9lCiMC19fcGFja2FnZV9flIwYc3RhYmxlX2Jhc2VsaW5lczMuY29tbW9ulIwIX19uYW1lX1+UjB5zdGFibGVfYmFzZWxpbmVzMy5jb21tb24udXRpbHOUjAhfX2ZpbGVfX5SMSS91c3IvbG9jYWwvbGliL3B5dGhvbjMuMTEvZGlzdC1wYWNrYWdlcy9zdGFibGVfYmFzZWxpbmVzMy9jb21tb24vdXRpbHMucHmUdU5OaACMEF9tYWtlX2VtcHR5X2NlbGyUk5QpUpSFlHSUUpRoAIwSX2Z1bmN0aW9uX3NldHN0YXRllJOUaCF9lH2UKGgYjARmdW5jlIwMX19xdWFsbmFtZV9flIwZY29uc3RhbnRfZm4uPGxvY2Fscz4uZnVuY5SMD19fYW5ub3RhdGlvbnNfX5R9lIwOX19rd2RlZmF1bHRzX1+UTowMX19kZWZhdWx0c19flE6MCl9fbW9kdWxlX1+UaBmMB19fZG9jX1+UTowLX19jbG9zdXJlX1+UaACMCl9tYWtlX2NlbGyUk5RHP8mZmZmZmZqFlFKUhZSMF19jbG91ZHBpY2tsZV9zdWJtb2R1bGVzlF2UjAtfX2dsb2JhbHNfX5R9lHWGlIZSMC4="}, "clip_range_vf": null, "normalize_advantage": true, "target_kl": null, "lr_schedule": {":type:": "<class 'function'>", ":serialized:": "gAWV1gIAAAAAAACMF2Nsb3VkcGlja2xlLmNsb3VkcGlja2xllIwOX21ha2VfZnVuY3Rpb26Uk5QoaACMDV9idWlsdGluX3R5cGWUk5SMCENvZGVUeXBllIWUUpQoSwFLAEsASwFLAUsTQwiVAZcAiQFTAJROhZQpjAFflIWUjEkvdXNyL2xvY2FsL2xpYi9weXRob24zLjExL2Rpc3QtcGFja2FnZXMvc3RhYmxlX2Jhc2VsaW5lczMvY29tbW9uL3V0aWxzLnB5lIwEZnVuY5SMGWNvbnN0YW50X2ZuLjxsb2NhbHM+LmZ1bmOUS4RDCPiAANgPEogKlEMAlIwDdmFslIWUKXSUUpR9lCiMC19fcGFja2FnZV9flIwYc3RhYmxlX2Jhc2VsaW5lczMuY29tbW9ulIwIX19uYW1lX1+UjB5zdGFibGVfYmFzZWxpbmVzMy5jb21tb24udXRpbHOUjAhfX2ZpbGVfX5SMSS91c3IvbG9jYWwvbGliL3B5dGhvbjMuMTEvZGlzdC1wYWNrYWdlcy9zdGFibGVfYmFzZWxpbmVzMy9jb21tb24vdXRpbHMucHmUdU5OaACMEF9tYWtlX2VtcHR5X2NlbGyUk5QpUpSFlHSUUpRoAIwSX2Z1bmN0aW9uX3NldHN0YXRllJOUaCF9lH2UKGgYjARmdW5jlIwMX19xdWFsbmFtZV9flIwZY29uc3RhbnRfZm4uPGxvY2Fscz4uZnVuY5SMD19fYW5ub3RhdGlvbnNfX5R9lIwOX19rd2RlZmF1bHRzX1+UTowMX19kZWZhdWx0c19flE6MCl9fbW9kdWxlX1+UaBmMB19fZG9jX1+UTowLX19jbG9zdXJlX1+UaACMCl9tYWtlX2NlbGyUk5RHPzOpKjBVMmGFlFKUhZSMF19jbG91ZHBpY2tsZV9zdWJtb2R1bGVzlF2UjAtfX2dsb2JhbHNfX5R9lHWGlIZSMC4="}, "system_info": {"OS": "Linux-6.6.105+-x86_64-with-glibc2.35 # 1 SMP Thu Oct 2 10:42:05 UTC 2025", "Python": "3.11.13", "Stable-Baselines3": "2.0.0a5", "PyTorch": "2.6.0+cu124", "GPU Enabled": "True", "Numpy": "2.0.2", "Cloudpickle": "3.1.1", "Gymnasium": "0.28.1", "OpenAI Gym": "0.25.2"}}
 
1
+ {"default_settings": null, "behaviors": {"Huggy": {"trainer_type": "ppo", "hyperparameters": {"batch_size": 2048, "buffer_size": 20480, "learning_rate": 0.0003, "beta": 0.005, "epsilon": 0.2, "lambd": 0.95, "num_epoch": 3, "shared_critic": false, "learning_rate_schedule": "linear", "beta_schedule": "linear", "epsilon_schedule": "linear"}, "checkpoint_interval": 200000, "network_settings": {"normalize": true, "hidden_units": 512, "num_layers": 3, "vis_encode_type": "simple", "memory": null, "goal_conditioning_type": "hyper", "deterministic": false}, "reward_signals": {"extrinsic": {"gamma": 0.995, "strength": 1.0, "network_settings": {"normalize": false, "hidden_units": 128, "num_layers": 2, "vis_encode_type": "simple", "memory": null, "goal_conditioning_type": "hyper", "deterministic": false}}}, "init_path": null, "keep_checkpoints": 15, "even_checkpoints": false, "max_steps": 2000000, "time_horizon": 1000, "summary_freq": 50000, "threaded": false, "self_play": null, "behavioral_cloning": null}}, "env_settings": {"env_path": "./trained-envs-executables/linux/Huggy/Huggy", "env_args": null, "base_port": 5005, "num_envs": 1, "num_areas": 1, "timeout_wait": 60, "seed": -1, "max_lifetime_restarts": 10, "restarts_rate_limit_n": 1, "restarts_rate_limit_period_s": 60}, "engine_settings": {"width": 84, "height": 84, "quality_level": 5, "time_scale": 20, "target_frame_rate": -1, "capture_frame_rate": 60, "no_graphics": true, "no_graphics_monitor": false}, "environment_parameters": null, "checkpoint_settings": {"run_id": "Huggy2", "initialize_from": null, "load_model": false, "resume": false, "force": false, "train_model": false, "inference": false, "results_dir": "results"}, "torch_settings": {"device": null}, "debug": false}
configuration.yaml ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ default_settings: null
2
+ behaviors:
3
+ Huggy:
4
+ trainer_type: ppo
5
+ hyperparameters:
6
+ batch_size: 2048
7
+ buffer_size: 20480
8
+ learning_rate: 0.0003
9
+ beta: 0.005
10
+ epsilon: 0.2
11
+ lambd: 0.95
12
+ num_epoch: 3
13
+ shared_critic: false
14
+ learning_rate_schedule: linear
15
+ beta_schedule: linear
16
+ epsilon_schedule: linear
17
+ checkpoint_interval: 200000
18
+ network_settings:
19
+ normalize: true
20
+ hidden_units: 512
21
+ num_layers: 3
22
+ vis_encode_type: simple
23
+ memory: null
24
+ goal_conditioning_type: hyper
25
+ deterministic: false
26
+ reward_signals:
27
+ extrinsic:
28
+ gamma: 0.995
29
+ strength: 1.0
30
+ network_settings:
31
+ normalize: false
32
+ hidden_units: 128
33
+ num_layers: 2
34
+ vis_encode_type: simple
35
+ memory: null
36
+ goal_conditioning_type: hyper
37
+ deterministic: false
38
+ init_path: null
39
+ keep_checkpoints: 15
40
+ even_checkpoints: false
41
+ max_steps: 2000000
42
+ time_horizon: 1000
43
+ summary_freq: 50000
44
+ threaded: false
45
+ self_play: null
46
+ behavioral_cloning: null
47
+ env_settings:
48
+ env_path: ./trained-envs-executables/linux/Huggy/Huggy
49
+ env_args: null
50
+ base_port: 5005
51
+ num_envs: 1
52
+ num_areas: 1
53
+ timeout_wait: 60
54
+ seed: -1
55
+ max_lifetime_restarts: 10
56
+ restarts_rate_limit_n: 1
57
+ restarts_rate_limit_period_s: 60
58
+ engine_settings:
59
+ width: 84
60
+ height: 84
61
+ quality_level: 5
62
+ time_scale: 20
63
+ target_frame_rate: -1
64
+ capture_frame_rate: 60
65
+ no_graphics: true
66
+ no_graphics_monitor: false
67
+ environment_parameters: null
68
+ checkpoint_settings:
69
+ run_id: Huggy2
70
+ initialize_from: null
71
+ load_model: false
72
+ resume: false
73
+ force: false
74
+ train_model: false
75
+ inference: false
76
+ results_dir: results
77
+ torch_settings:
78
+ device: null
79
+ debug: false
run_logs/Player-0.log ADDED
@@ -0,0 +1,294 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = '/content/ml-agents/trained-envs-executables/linux/Huggy/Huggy_Data/Managed'
2
+ Mono config path = '/content/ml-agents/trained-envs-executables/linux/Huggy/Huggy_Data/MonoBleedingEdge/etc'
3
+ Preloaded 'lib_burst_generated.so'
4
+ Preloaded 'libgrpc_csharp_ext.x64.so'
5
+ PlayerPrefs - Creating folder: /root/.config/unity3d/Hugging Face
6
+ PlayerPrefs - Creating folder: /root/.config/unity3d/Hugging Face/Huggy
7
+ Unable to load player prefs
8
+ Initialize engine version: 2021.3.14f1 (eee1884e7226)
9
+ [Subsystems] Discovering subsystems at path /content/ml-agents/trained-envs-executables/linux/Huggy/Huggy_Data/UnitySubsystems
10
+ Forcing GfxDevice: Null
11
+ GfxDevice: creating device client; threaded=0; jobified=0
12
+ NullGfxDevice:
13
+ Version: NULL 1.0 [1.0]
14
+ Renderer: Null Device
15
+ Vendor: Unity Technologies
16
+ ALSA lib confmisc.c:855:(parse_card) cannot find card '0'
17
+ ALSA lib conf.c:5178:(_snd_config_evaluate) function snd_func_card_inum returned error: No such file or directory
18
+ ALSA lib confmisc.c:422:(snd_func_concat) error evaluating strings
19
+ ALSA lib conf.c:5178:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
20
+ ALSA lib confmisc.c:1334:(snd_func_refer) error evaluating name
21
+ ALSA lib conf.c:5178:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
22
+ ALSA lib conf.c:5701:(snd_config_expand) Evaluate error: No such file or directory
23
+ ALSA lib pcm.c:2664:(snd_pcm_open_noupdate) Unknown PCM default
24
+ FMOD failed to initialize the output device.: "Error initializing output device. " (60)
25
+ Forced to initialize FMOD to to the device driver's system output rate 48000, this may impact performance and/or give inconsistent experiences compared to selected sample rate 48000
26
+ ALSA lib confmisc.c:855:(parse_card) cannot find card '0'
27
+ ALSA lib conf.c:5178:(_snd_config_evaluate) function snd_func_card_inum returned error: No such file or directory
28
+ ALSA lib confmisc.c:422:(snd_func_concat) error evaluating strings
29
+ ALSA lib conf.c:5178:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
30
+ ALSA lib confmisc.c:1334:(snd_func_refer) error evaluating name
31
+ ALSA lib conf.c:5178:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
32
+ ALSA lib conf.c:5701:(snd_config_expand) Evaluate error: No such file or directory
33
+ ALSA lib pcm.c:2664:(snd_pcm_open_noupdate) Unknown PCM default
34
+ FMOD failed to initialize the output device.: "Error initializing output device. " (60)
35
+ FMOD initialized on nosound output
36
+ Begin MonoManager ReloadAssembly
37
+ - Completed reload, in 0.214 seconds
38
+ ERROR: Shader Hidden/Universal Render Pipeline/Blit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
39
+ ERROR: Shader Hidden/Universal Render Pipeline/CopyDepth shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
40
+ ERROR: Shader Hidden/Universal Render Pipeline/ScreenSpaceShadows shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
41
+ ERROR: Shader Hidden/Universal Render Pipeline/Sampling shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
42
+ ERROR: Shader Hidden/Universal Render Pipeline/LutBuilderLdr shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
43
+ ERROR: Shader Hidden/Universal Render Pipeline/LutBuilderHdr shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
44
+ ERROR: Shader Hidden/Universal Render Pipeline/UberPost shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
45
+ WARNING: Shader Unsupported: 'Hidden/Universal Render Pipeline/FallbackError' - All subshaders removed
46
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
47
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
48
+ ERROR: Shader Hidden/Universal Render Pipeline/FallbackError shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
49
+ WARNING: Shader Unsupported: 'Hidden/Universal Render Pipeline/FallbackError' - All subshaders removed
50
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
51
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
52
+ ERROR: Shader Hidden/Universal Render Pipeline/Stop NaN shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
53
+ ERROR: Shader Hidden/Universal Render Pipeline/SubpixelMorphologicalAntialiasing shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
54
+ ERROR: Shader Hidden/Universal Render Pipeline/GaussianDepthOfField shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
55
+ ERROR: Shader Hidden/Universal Render Pipeline/BokehDepthOfField shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
56
+ ERROR: Shader Hidden/Universal Render Pipeline/CameraMotionBlur shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
57
+ ERROR: Shader Hidden/Universal Render Pipeline/PaniniProjection shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
58
+ ERROR: Shader Hidden/Universal Render Pipeline/Bloom shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
59
+ ERROR: Shader Hidden/Universal Render Pipeline/FinalPost shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
60
+ WARNING: Shader Unsupported: 'Hidden/Universal Render Pipeline/StencilDeferred' - All subshaders removed
61
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
62
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
63
+ WARNING: Shader Unsupported: 'Hidden/Universal Render Pipeline/StencilDeferred' - All subshaders removed
64
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
65
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
66
+ ERROR: Shader Hidden/Universal Render Pipeline/LensFlareDataDriven shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
67
+ ERROR: Shader Hidden/Universal Render Pipeline/Scaling Setup shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
68
+ ERROR: Shader Hidden/Universal Render Pipeline/Edge Adaptive Spatial Upsampling shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
69
+ ERROR: Shader Hidden/Universal Render Pipeline/Debug/DebugReplacement shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
70
+ ERROR: Shader Hidden/kMotion/CameraMotionVectors shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
71
+ ERROR: Shader Hidden/kMotion/ObjectMotionVectors shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
72
+ ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
73
+ ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
74
+ WARNING: Shader Unsupported: 'Universal Render Pipeline/Lit' - All subshaders removed
75
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
76
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
77
+ ERROR: Shader Universal Render Pipeline/Lit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
78
+ WARNING: Shader Unsupported: 'Universal Render Pipeline/Lit' - All subshaders removed
79
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
80
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
81
+ UnloadTime: 0.735940 ms
82
+ requesting resize 84 x 84
83
+ Setting up 1 worker threads for Enlighten.
84
+ Memory Statistics:
85
+ [ALLOC_TEMP_TLS] TLS Allocator
86
+ StackAllocators :
87
+ [ALLOC_TEMP_MAIN]
88
+ Peak usage frame count: [4.0 KB-8.0 KB]: 2800 frames, [2.0 MB-4.0 MB]: 1 frames
89
+ Initial Block Size 4.0 MB
90
+ Current Block Size 4.0 MB
91
+ Peak Allocated Bytes 3.6 MB
92
+ Overflow Count 0
93
+ [ALLOC_TEMP_Loading.AsyncRead]
94
+ Initial Block Size 64.0 KB
95
+ Current Block Size 64.0 KB
96
+ Peak Allocated Bytes 240 B
97
+ Overflow Count 0
98
+ [ALLOC_TEMP_Loading.PreloadManager]
99
+ Initial Block Size 256.0 KB
100
+ Current Block Size 296.0 KB
101
+ Peak Allocated Bytes 211.5 KB
102
+ Overflow Count 4
103
+ [ALLOC_TEMP_Background Job.Worker 8]
104
+ Initial Block Size 32.0 KB
105
+ Current Block Size 32.0 KB
106
+ Peak Allocated Bytes 0 B
107
+ Overflow Count 0
108
+ [ALLOC_TEMP_Background Job.Worker 9]
109
+ Initial Block Size 32.0 KB
110
+ Current Block Size 32.0 KB
111
+ Peak Allocated Bytes 0 B
112
+ Overflow Count 0
113
+ [ALLOC_TEMP_Job.Worker 0]
114
+ Initial Block Size 256.0 KB
115
+ Current Block Size 256.0 KB
116
+ Peak Allocated Bytes 0 B
117
+ Overflow Count 0
118
+ [ALLOC_TEMP_Background Job.Worker 10]
119
+ Initial Block Size 32.0 KB
120
+ Current Block Size 32.0 KB
121
+ Peak Allocated Bytes 0 B
122
+ Overflow Count 0
123
+ [ALLOC_TEMP_Background Job.Worker 14]
124
+ Initial Block Size 32.0 KB
125
+ Current Block Size 32.0 KB
126
+ Peak Allocated Bytes 0 B
127
+ Overflow Count 0
128
+ [ALLOC_TEMP_Background Job.Worker 6]
129
+ Initial Block Size 32.0 KB
130
+ Current Block Size 32.0 KB
131
+ Peak Allocated Bytes 0 B
132
+ Overflow Count 0
133
+ [ALLOC_TEMP_Background Job.Worker 12]
134
+ Initial Block Size 32.0 KB
135
+ Current Block Size 32.0 KB
136
+ Peak Allocated Bytes 0 B
137
+ Overflow Count 0
138
+ [ALLOC_TEMP_EnlightenWorker]
139
+ Initial Block Size 64.0 KB
140
+ Current Block Size 64.0 KB
141
+ Peak Allocated Bytes 0 B
142
+ Overflow Count 0
143
+ [ALLOC_TEMP_Background Job.Worker 15]
144
+ Initial Block Size 32.0 KB
145
+ Current Block Size 32.0 KB
146
+ Peak Allocated Bytes 0 B
147
+ Overflow Count 0
148
+ [ALLOC_TEMP_Background Job.Worker 1]
149
+ Initial Block Size 32.0 KB
150
+ Current Block Size 32.0 KB
151
+ Peak Allocated Bytes 0 B
152
+ Overflow Count 0
153
+ [ALLOC_TEMP_Background Job.Worker 2]
154
+ Initial Block Size 32.0 KB
155
+ Current Block Size 32.0 KB
156
+ Peak Allocated Bytes 0 B
157
+ Overflow Count 0
158
+ [ALLOC_TEMP_Background Job.Worker 7]
159
+ Initial Block Size 32.0 KB
160
+ Current Block Size 32.0 KB
161
+ Peak Allocated Bytes 0 B
162
+ Overflow Count 0
163
+ [ALLOC_TEMP_AssetGarbageCollectorHelper]
164
+ Initial Block Size 64.0 KB
165
+ Current Block Size 64.0 KB
166
+ Peak Allocated Bytes 0 B
167
+ Overflow Count 0
168
+ [ALLOC_TEMP_Background Job.Worker 5]
169
+ Initial Block Size 32.0 KB
170
+ Current Block Size 32.0 KB
171
+ Peak Allocated Bytes 0 B
172
+ Overflow Count 0
173
+ [ALLOC_TEMP_Background Job.Worker 13]
174
+ Initial Block Size 32.0 KB
175
+ Current Block Size 32.0 KB
176
+ Peak Allocated Bytes 0 B
177
+ Overflow Count 0
178
+ [ALLOC_TEMP_Background Job.Worker 11]
179
+ Initial Block Size 32.0 KB
180
+ Current Block Size 32.0 KB
181
+ Peak Allocated Bytes 0 B
182
+ Overflow Count 0
183
+ [ALLOC_TEMP_Background Job.Worker 3]
184
+ Initial Block Size 32.0 KB
185
+ Current Block Size 32.0 KB
186
+ Peak Allocated Bytes 0 B
187
+ Overflow Count 0
188
+ [ALLOC_TEMP_Background Job.Worker 0]
189
+ Initial Block Size 32.0 KB
190
+ Current Block Size 32.0 KB
191
+ Peak Allocated Bytes 0 B
192
+ Overflow Count 0
193
+ [ALLOC_TEMP_Background Job.Worker 4]
194
+ Initial Block Size 32.0 KB
195
+ Current Block Size 32.0 KB
196
+ Peak Allocated Bytes 0 B
197
+ Overflow Count 0
198
+ [ALLOC_TEMP_BatchDeleteObjects]
199
+ Initial Block Size 64.0 KB
200
+ Current Block Size 64.0 KB
201
+ Peak Allocated Bytes 0 B
202
+ Overflow Count 0
203
+ [ALLOC_DEFAULT] Dual Thread Allocator
204
+ Peak main deferred allocation count 288
205
+ [ALLOC_BUCKET]
206
+ Large Block size 4.0 MB
207
+ Used Block count 1
208
+ Peak Allocated bytes 1.4 MB
209
+ [ALLOC_DEFAULT_MAIN]
210
+ Peak usage frame count: [16.0 MB-32.0 MB]: 2801 frames
211
+ Requested Block Size 16.0 MB
212
+ Peak Block count 1
213
+ Peak Allocated memory 22.3 MB
214
+ Peak Large allocation bytes 16.0 MB
215
+ [ALLOC_DEFAULT_THREAD]
216
+ Peak usage frame count: [1.0 MB-2.0 MB]: 2785 frames, [2.0 MB-4.0 MB]: 16 frames
217
+ Requested Block Size 16.0 MB
218
+ Peak Block count 1
219
+ Peak Allocated memory 2.3 MB
220
+ Peak Large allocation bytes 0 B
221
+ [ALLOC_TEMP_JOB_1_FRAME]
222
+ Initial Block Size 2.0 MB
223
+ Used Block Count 1
224
+ Overflow Count (too large) 0
225
+ Overflow Count (full) 0
226
+ [ALLOC_TEMP_JOB_2_FRAMES]
227
+ Initial Block Size 2.0 MB
228
+ Used Block Count 1
229
+ Overflow Count (too large) 0
230
+ Overflow Count (full) 0
231
+ [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
232
+ Initial Block Size 2.0 MB
233
+ Used Block Count 2
234
+ Overflow Count (too large) 0
235
+ Overflow Count (full) 0
236
+ [ALLOC_TEMP_JOB_ASYNC (Background)]
237
+ Initial Block Size 1.0 MB
238
+ Used Block Count 3
239
+ Overflow Count (too large) 0
240
+ Overflow Count (full) 0
241
+ [ALLOC_GFX] Dual Thread Allocator
242
+ Peak main deferred allocation count 0
243
+ [ALLOC_BUCKET]
244
+ Large Block size 4.0 MB
245
+ Used Block count 1
246
+ Peak Allocated bytes 1.4 MB
247
+ [ALLOC_GFX_MAIN]
248
+ Peak usage frame count: [32.0 KB-64.0 KB]: 2800 frames, [64.0 KB-128.0 KB]: 1 frames
249
+ Requested Block Size 16.0 MB
250
+ Peak Block count 1
251
+ Peak Allocated memory 65.6 KB
252
+ Peak Large allocation bytes 0 B
253
+ [ALLOC_GFX_THREAD]
254
+ Peak usage frame count: [64.0 KB-128.0 KB]: 2801 frames
255
+ Requested Block Size 16.0 MB
256
+ Peak Block count 1
257
+ Peak Allocated memory 81.8 KB
258
+ Peak Large allocation bytes 0 B
259
+ [ALLOC_CACHEOBJECTS] Dual Thread Allocator
260
+ Peak main deferred allocation count 0
261
+ [ALLOC_BUCKET]
262
+ Large Block size 4.0 MB
263
+ Used Block count 1
264
+ Peak Allocated bytes 1.4 MB
265
+ [ALLOC_CACHEOBJECTS_MAIN]
266
+ Peak usage frame count: [1.0 MB-2.0 MB]: 2800 frames, [16.0 MB-32.0 MB]: 1 frames
267
+ Requested Block Size 4.0 MB
268
+ Peak Block count 2
269
+ Peak Allocated memory 30.6 MB
270
+ Peak Large allocation bytes 24.9 MB
271
+ [ALLOC_CACHEOBJECTS_THREAD]
272
+ Peak usage frame count: [0.5 MB-1.0 MB]: 2800 frames, [2.0 MB-4.0 MB]: 1 frames
273
+ Requested Block Size 4.0 MB
274
+ Peak Block count 1
275
+ Peak Allocated memory 2.6 MB
276
+ Peak Large allocation bytes 0 B
277
+ [ALLOC_TYPETREE] Dual Thread Allocator
278
+ Peak main deferred allocation count 0
279
+ [ALLOC_BUCKET]
280
+ Large Block size 4.0 MB
281
+ Used Block count 1
282
+ Peak Allocated bytes 1.4 MB
283
+ [ALLOC_TYPETREE_MAIN]
284
+ Peak usage frame count: [0-1.0 KB]: 2801 frames
285
+ Requested Block Size 2.0 MB
286
+ Peak Block count 1
287
+ Peak Allocated memory 1.0 KB
288
+ Peak Large allocation bytes 0 B
289
+ [ALLOC_TYPETREE_THREAD]
290
+ Peak usage frame count: [4.0 KB-8.0 KB]: 2801 frames
291
+ Requested Block Size 2.0 MB
292
+ Peak Block count 1
293
+ Peak Allocated memory 7.3 KB
294
+ Peak Large allocation bytes 0 B
run_logs/timers.json ADDED
@@ -0,0 +1,362 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "root",
3
+ "gauges": {
4
+ "Huggy.Policy.Entropy.mean": {
5
+ "value": 1.423821210861206,
6
+ "min": 1.4190664291381836,
7
+ "max": 1.423821210861206,
8
+ "count": 4
9
+ },
10
+ "Huggy.Policy.Entropy.sum": {
11
+ "value": 70047.734375,
12
+ "min": 68564.7890625,
13
+ "max": 77754.90625,
14
+ "count": 4
15
+ },
16
+ "Huggy.Environment.EpisodeLength.mean": {
17
+ "value": 230.05990783410138,
18
+ "min": 230.05990783410138,
19
+ "max": 406.8861788617886,
20
+ "count": 4
21
+ },
22
+ "Huggy.Environment.EpisodeLength.sum": {
23
+ "value": 49923.0,
24
+ "min": 49478.0,
25
+ "max": 50080.0,
26
+ "count": 4
27
+ },
28
+ "Huggy.Step.mean": {
29
+ "value": 199992.0,
30
+ "min": 49947.0,
31
+ "max": 199992.0,
32
+ "count": 4
33
+ },
34
+ "Huggy.Step.sum": {
35
+ "value": 199992.0,
36
+ "min": 49947.0,
37
+ "max": 199992.0,
38
+ "count": 4
39
+ },
40
+ "Huggy.Policy.ExtrinsicValueEstimate.mean": {
41
+ "value": 0.8986622095108032,
42
+ "min": 0.07460981607437134,
43
+ "max": 0.8986622095108032,
44
+ "count": 4
45
+ },
46
+ "Huggy.Policy.ExtrinsicValueEstimate.sum": {
47
+ "value": 195.00970458984375,
48
+ "min": 9.102397918701172,
49
+ "max": 195.00970458984375,
50
+ "count": 4
51
+ },
52
+ "Huggy.Environment.CumulativeReward.mean": {
53
+ "value": 3.2933797877505078,
54
+ "min": 1.833546322510868,
55
+ "max": 3.2933797877505078,
56
+ "count": 4
57
+ },
58
+ "Huggy.Environment.CumulativeReward.sum": {
59
+ "value": 714.6634139418602,
60
+ "min": 223.69265134632587,
61
+ "max": 714.6634139418602,
62
+ "count": 4
63
+ },
64
+ "Huggy.Policy.ExtrinsicReward.mean": {
65
+ "value": 3.2933797877505078,
66
+ "min": 1.833546322510868,
67
+ "max": 3.2933797877505078,
68
+ "count": 4
69
+ },
70
+ "Huggy.Policy.ExtrinsicReward.sum": {
71
+ "value": 714.6634139418602,
72
+ "min": 223.69265134632587,
73
+ "max": 714.6634139418602,
74
+ "count": 4
75
+ },
76
+ "Huggy.Losses.PolicyLoss.mean": {
77
+ "value": 0.014468230124233135,
78
+ "min": 0.014468230124233135,
79
+ "max": 0.01799517210521218,
80
+ "count": 4
81
+ },
82
+ "Huggy.Losses.PolicyLoss.sum": {
83
+ "value": 0.02893646024846627,
84
+ "min": 0.02893646024846627,
85
+ "max": 0.05398551631563654,
86
+ "count": 4
87
+ },
88
+ "Huggy.Losses.ValueLoss.mean": {
89
+ "value": 0.026294824046393238,
90
+ "min": 0.021919104425857462,
91
+ "max": 0.028443139636268218,
92
+ "count": 4
93
+ },
94
+ "Huggy.Losses.ValueLoss.sum": {
95
+ "value": 0.052589648092786476,
96
+ "min": 0.043838208851714924,
97
+ "max": 0.07307288901259501,
98
+ "count": 4
99
+ },
100
+ "Huggy.Policy.LearningRate.mean": {
101
+ "value": 0.000273529283823575,
102
+ "min": 0.000273529283823575,
103
+ "max": 0.0002952804015732,
104
+ "count": 4
105
+ },
106
+ "Huggy.Policy.LearningRate.sum": {
107
+ "value": 0.00054705856764715,
108
+ "min": 0.00054705856764715,
109
+ "max": 0.0008437236187587998,
110
+ "count": 4
111
+ },
112
+ "Huggy.Policy.Epsilon.mean": {
113
+ "value": 0.19117642500000004,
114
+ "min": 0.19117642500000004,
115
+ "max": 0.19842680000000001,
116
+ "count": 4
117
+ },
118
+ "Huggy.Policy.Epsilon.sum": {
119
+ "value": 0.3823528500000001,
120
+ "min": 0.3823528500000001,
121
+ "max": 0.5812412,
122
+ "count": 4
123
+ },
124
+ "Huggy.Policy.Beta.mean": {
125
+ "value": 0.0045597036075,
126
+ "min": 0.0045597036075,
127
+ "max": 0.00492149732,
128
+ "count": 4
129
+ },
130
+ "Huggy.Policy.Beta.sum": {
131
+ "value": 0.009119407215,
132
+ "min": 0.009119407215,
133
+ "max": 0.014063935880000003,
134
+ "count": 4
135
+ },
136
+ "Huggy.IsTraining.mean": {
137
+ "value": 1.0,
138
+ "min": 1.0,
139
+ "max": 1.0,
140
+ "count": 4
141
+ },
142
+ "Huggy.IsTraining.sum": {
143
+ "value": 1.0,
144
+ "min": 1.0,
145
+ "max": 1.0,
146
+ "count": 4
147
+ }
148
+ },
149
+ "metadata": {
150
+ "timer_format_version": "0.1.0",
151
+ "start_time_seconds": "1763310354",
152
+ "python_version": "3.10.12 (main, Jul 5 2023, 18:54:27) [GCC 11.2.0]",
153
+ "command_line_arguments": "/usr/local/bin/mlagents-learn ./config/ppo/Huggy.yaml --env=./trained-envs-executables/linux/Huggy/Huggy --run-id=Huggy2 --no-graphics",
154
+ "mlagents_version": "1.2.0.dev0",
155
+ "mlagents_envs_version": "1.2.0.dev0",
156
+ "communication_protocol_version": "1.5.0",
157
+ "pytorch_version": "2.8.0+cu128",
158
+ "numpy_version": "1.23.5",
159
+ "end_time_seconds": "1763310613"
160
+ },
161
+ "total": 259.3432807009999,
162
+ "count": 1,
163
+ "self": 0.4830919629998789,
164
+ "children": {
165
+ "run_training.setup": {
166
+ "total": 0.02540454200016029,
167
+ "count": 1,
168
+ "self": 0.02540454200016029
169
+ },
170
+ "TrainerController.start_learning": {
171
+ "total": 258.8347841959999,
172
+ "count": 1,
173
+ "self": 0.43272949203264943,
174
+ "children": {
175
+ "TrainerController._reset_env": {
176
+ "total": 3.5080423469999005,
177
+ "count": 1,
178
+ "self": 3.5080423469999005
179
+ },
180
+ "TrainerController.advance": {
181
+ "total": 254.8932644569668,
182
+ "count": 23689,
183
+ "self": 0.45385130094291526,
184
+ "children": {
185
+ "env_step": {
186
+ "total": 215.56824009102093,
187
+ "count": 23689,
188
+ "self": 171.9124859079966,
189
+ "children": {
190
+ "SubprocessEnvManager._take_step": {
191
+ "total": 43.37427502898527,
192
+ "count": 23689,
193
+ "self": 1.5959830879937726,
194
+ "children": {
195
+ "TorchPolicy.evaluate": {
196
+ "total": 41.778291940991494,
197
+ "count": 23339,
198
+ "self": 41.778291940991494
199
+ }
200
+ }
201
+ },
202
+ "workers": {
203
+ "total": 0.28147915403906154,
204
+ "count": 23689,
205
+ "self": 0.0,
206
+ "children": {
207
+ "worker_root": {
208
+ "total": 257.4733873230016,
209
+ "count": 23689,
210
+ "is_parallel": true,
211
+ "self": 118.62030745898437,
212
+ "children": {
213
+ "run_training.setup": {
214
+ "total": 0.0,
215
+ "count": 0,
216
+ "is_parallel": true,
217
+ "self": 0.0,
218
+ "children": {
219
+ "steps_from_proto": {
220
+ "total": 0.000843426000301406,
221
+ "count": 1,
222
+ "is_parallel": true,
223
+ "self": 0.0002643500006342947,
224
+ "children": {
225
+ "_process_rank_one_or_two_observation": {
226
+ "total": 0.0005790759996671113,
227
+ "count": 2,
228
+ "is_parallel": true,
229
+ "self": 0.0005790759996671113
230
+ }
231
+ }
232
+ },
233
+ "UnityEnvironment.step": {
234
+ "total": 0.029022094000083598,
235
+ "count": 1,
236
+ "is_parallel": true,
237
+ "self": 0.00033737000012479257,
238
+ "children": {
239
+ "UnityEnvironment._generate_step_input": {
240
+ "total": 0.00020290999964345247,
241
+ "count": 1,
242
+ "is_parallel": true,
243
+ "self": 0.00020290999964345247
244
+ },
245
+ "communicator.exchange": {
246
+ "total": 0.02769276600020021,
247
+ "count": 1,
248
+ "is_parallel": true,
249
+ "self": 0.02769276600020021
250
+ },
251
+ "steps_from_proto": {
252
+ "total": 0.0007890480001151445,
253
+ "count": 1,
254
+ "is_parallel": true,
255
+ "self": 0.00022475600007965113,
256
+ "children": {
257
+ "_process_rank_one_or_two_observation": {
258
+ "total": 0.0005642920000354934,
259
+ "count": 2,
260
+ "is_parallel": true,
261
+ "self": 0.0005642920000354934
262
+ }
263
+ }
264
+ }
265
+ }
266
+ }
267
+ }
268
+ },
269
+ "UnityEnvironment.step": {
270
+ "total": 138.85307986401722,
271
+ "count": 23688,
272
+ "is_parallel": true,
273
+ "self": 3.8605985319613865,
274
+ "children": {
275
+ "UnityEnvironment._generate_step_input": {
276
+ "total": 8.51409830502007,
277
+ "count": 23688,
278
+ "is_parallel": true,
279
+ "self": 8.51409830502007
280
+ },
281
+ "communicator.exchange": {
282
+ "total": 117.28334450301236,
283
+ "count": 23688,
284
+ "is_parallel": true,
285
+ "self": 117.28334450301236
286
+ },
287
+ "steps_from_proto": {
288
+ "total": 9.195038524023403,
289
+ "count": 23688,
290
+ "is_parallel": true,
291
+ "self": 3.241506134007068,
292
+ "children": {
293
+ "_process_rank_one_or_two_observation": {
294
+ "total": 5.953532390016335,
295
+ "count": 47376,
296
+ "is_parallel": true,
297
+ "self": 5.953532390016335
298
+ }
299
+ }
300
+ }
301
+ }
302
+ }
303
+ }
304
+ }
305
+ }
306
+ }
307
+ }
308
+ },
309
+ "trainer_advance": {
310
+ "total": 38.87117306500295,
311
+ "count": 23689,
312
+ "self": 0.7076474229975247,
313
+ "children": {
314
+ "process_trajectory": {
315
+ "total": 11.622941843005265,
316
+ "count": 23689,
317
+ "self": 11.46507861600503,
318
+ "children": {
319
+ "RLTrainer._checkpoint": {
320
+ "total": 0.15786322700023447,
321
+ "count": 1,
322
+ "self": 0.15786322700023447
323
+ }
324
+ }
325
+ },
326
+ "_update_policy": {
327
+ "total": 26.54058379900016,
328
+ "count": 10,
329
+ "self": 20.773874048999915,
330
+ "children": {
331
+ "TorchPPOOptimizer.update": {
332
+ "total": 5.7667097500002455,
333
+ "count": 270,
334
+ "self": 5.7667097500002455
335
+ }
336
+ }
337
+ }
338
+ }
339
+ }
340
+ }
341
+ },
342
+ "trainer_threads": {
343
+ "total": 1.229000190505758e-06,
344
+ "count": 1,
345
+ "self": 1.229000190505758e-06
346
+ },
347
+ "TrainerController._save_models": {
348
+ "total": 0.0007466710003427579,
349
+ "count": 1,
350
+ "self": 2.422400029900018e-05,
351
+ "children": {
352
+ "RLTrainer._checkpoint": {
353
+ "total": 0.0007224470000437577,
354
+ "count": 1,
355
+ "self": 0.0007224470000437577
356
+ }
357
+ }
358
+ }
359
+ }
360
+ }
361
+ }
362
+ }
run_logs/training_status.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Huggy": {
3
+ "checkpoints": [
4
+ {
5
+ "steps": 199992,
6
+ "file_path": "results/Huggy2/Huggy/Huggy-199992.onnx",
7
+ "reward": 3.495874868611158,
8
+ "creation_time": 1763310604.1128268,
9
+ "auxillary_file_paths": [
10
+ "results/Huggy2/Huggy/Huggy-199992.pt"
11
+ ]
12
+ }
13
+ ]
14
+ },
15
+ "metadata": {
16
+ "stats_format_version": "0.3.0",
17
+ "mlagents_version": "1.2.0.dev0",
18
+ "torch_version": "2.8.0+cu128"
19
+ }
20
+ }