humalab 0.0.5__py3-none-any.whl → 0.0.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of humalab might be problematic. Click here for more details.
- humalab/__init__.py +11 -0
- humalab/assets/__init__.py +2 -2
- humalab/assets/files/resource_file.py +29 -3
- humalab/assets/files/urdf_file.py +14 -10
- humalab/assets/resource_operator.py +91 -0
- humalab/constants.py +39 -5
- humalab/dists/bernoulli.py +2 -1
- humalab/dists/discrete.py +2 -2
- humalab/dists/gaussian.py +2 -2
- humalab/dists/log_uniform.py +2 -2
- humalab/dists/truncated_gaussian.py +4 -4
- humalab/episode.py +181 -11
- humalab/humalab.py +44 -28
- humalab/humalab_api_client.py +301 -94
- humalab/humalab_test.py +46 -17
- humalab/metrics/__init__.py +5 -5
- humalab/metrics/code.py +28 -0
- humalab/metrics/metric.py +41 -108
- humalab/metrics/scenario_stats.py +95 -0
- humalab/metrics/summary.py +24 -18
- humalab/run.py +180 -103
- humalab/scenarios/__init__.py +4 -0
- humalab/{scenario.py → scenarios/scenario.py} +120 -129
- humalab/scenarios/scenario_operator.py +82 -0
- humalab/{scenario_test.py → scenarios/scenario_test.py} +150 -269
- humalab/utils.py +37 -0
- {humalab-0.0.5.dist-info → humalab-0.0.6.dist-info}/METADATA +1 -1
- humalab-0.0.6.dist-info/RECORD +39 -0
- humalab/assets/resource_manager.py +0 -58
- humalab/evaluators/__init__.py +0 -16
- humalab/humalab_main.py +0 -119
- humalab/metrics/dist_metric.py +0 -22
- humalab-0.0.5.dist-info/RECORD +0 -37
- {humalab-0.0.5.dist-info → humalab-0.0.6.dist-info}/WHEEL +0 -0
- {humalab-0.0.5.dist-info → humalab-0.0.6.dist-info}/entry_points.txt +0 -0
- {humalab-0.0.5.dist-info → humalab-0.0.6.dist-info}/licenses/LICENSE +0 -0
- {humalab-0.0.5.dist-info → humalab-0.0.6.dist-info}/top_level.txt +0 -0
humalab/utils.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import builtins
|
|
2
|
+
|
|
3
|
+
# Define what counts as "standard" types
|
|
4
|
+
STANDARD_TYPES = (
|
|
5
|
+
int, float, complex, bool, str, bytes, bytearray,
|
|
6
|
+
list, tuple, dict, set, frozenset, type(None)
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
def is_standard_type(obj, _seen=None):
|
|
10
|
+
"""Recursively check if an object only contains standard Python types."""
|
|
11
|
+
if _seen is None:
|
|
12
|
+
_seen = set()
|
|
13
|
+
|
|
14
|
+
obj_id = id(obj)
|
|
15
|
+
if obj_id in _seen:
|
|
16
|
+
return True # Prevent infinite recursion for self-referential structures
|
|
17
|
+
_seen.add(obj_id)
|
|
18
|
+
|
|
19
|
+
if isinstance(obj, STANDARD_TYPES):
|
|
20
|
+
if isinstance(obj, (list, tuple, set, frozenset)):
|
|
21
|
+
return all(is_standard_type(i, _seen) for i in obj)
|
|
22
|
+
elif isinstance(obj, dict):
|
|
23
|
+
return all(
|
|
24
|
+
is_standard_type(k, _seen) and is_standard_type(v, _seen)
|
|
25
|
+
for k, v in obj.items()
|
|
26
|
+
)
|
|
27
|
+
return True
|
|
28
|
+
|
|
29
|
+
# If it's a builtin constant type (e.g., Ellipsis, NotImplemented)
|
|
30
|
+
if obj in (Ellipsis, NotImplemented):
|
|
31
|
+
return True
|
|
32
|
+
|
|
33
|
+
# Check if it's a built-in type object (like int, str)
|
|
34
|
+
if isinstance(obj, type) and obj.__module__ == 'builtins':
|
|
35
|
+
return True
|
|
36
|
+
|
|
37
|
+
return False
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
humalab/__init__.py,sha256=d6RcDYAWf4HzzF_is-_nlTZXAg2UjLSoWRJegNOYz9U,416
|
|
2
|
+
humalab/constants.py,sha256=gIdDoKnrAjfCMbnv4MnPncGYQXqELsaVYs3bQmH6k0s,852
|
|
3
|
+
humalab/episode.py,sha256=WpWIxzkQSBm-YGCEnvjL2b5pEN5OQBzFZJb_b3f8mKM,6917
|
|
4
|
+
humalab/humalab.py,sha256=FiC551LnCa1iQOvQ9tOUsbocs2Q2M3zy8gDgMAMFsJg,6712
|
|
5
|
+
humalab/humalab_api_client.py,sha256=uy6Re-e4v-Z5lPhZnu_HeSOcxDfdxW1uaMOb5Dbu0JE,29549
|
|
6
|
+
humalab/humalab_config.py,sha256=K-RC1MfAhuD_FCORySV7uyjKzW-bYf2tY6EOZslR0kg,2316
|
|
7
|
+
humalab/humalab_test.py,sha256=YMwOIH-sAOMnxwq8yR-Ut4vYk5Ksix9zS9yUIxi3GU8,20725
|
|
8
|
+
humalab/run.py,sha256=GSO_YrEkWqEBu7fvPjL1ru-xkEYMvXYXS2ReMm42V3k,10129
|
|
9
|
+
humalab/utils.py,sha256=KMIPoduAbQzha9wvnyX8OjE8X-3TaNpecx2o-kgHbdw,1161
|
|
10
|
+
humalab/assets/__init__.py,sha256=9WnZmRuS04q1GMAVfS8-SIjH5m50kmEnsKC2VAH1obA,167
|
|
11
|
+
humalab/assets/archive.py,sha256=PALZRnpNExDfXiURVNEj6xxWqcW4nd9UBZ7QIHa8mI8,3119
|
|
12
|
+
humalab/assets/resource_operator.py,sha256=YoKQ8_rfHDuvpn7zJsbaOIcouO5Oaehs0duFfB_rczg,4184
|
|
13
|
+
humalab/assets/files/__init__.py,sha256=9XF-Zp2nldx060v8A3tMTcB5o5vJCUTFKF9rrIFZE_s,111
|
|
14
|
+
humalab/assets/files/resource_file.py,sha256=HpPM4FVAya0kEggx8bFB__2S6CxyJyHyWZCQ6VcQLi4,1773
|
|
15
|
+
humalab/assets/files/urdf_file.py,sha256=UehIGgF9qL5oFiMX81l3aolSca7rkzN_B6t6k3o51UE,2802
|
|
16
|
+
humalab/dists/__init__.py,sha256=Q7zQbFGC_CnTgExMcnRtJdqJitqy1oBk4D6Qyvunlqc,387
|
|
17
|
+
humalab/dists/bernoulli.py,sha256=4RSYBkeyTHkqOzkn-of4y_oNJPhhfkMOuW2APjNa8Eo,1975
|
|
18
|
+
humalab/dists/categorical.py,sha256=plEIZIx5LRiaNreUCIk9EkhBD6eflxwMJy3XbseeUBw,2114
|
|
19
|
+
humalab/dists/discrete.py,sha256=X2VufaTsI7x125ev7RL7Sc59JhWh51tlE2dXAD51XBU,2889
|
|
20
|
+
humalab/dists/distribution.py,sha256=t0qTUjS_N0adiy_j2fdf-NHSlRs1pr0swpnszizs04I,1048
|
|
21
|
+
humalab/dists/gaussian.py,sha256=eezw8qpcRIRpoSM7Vgnny8berqsbcfKm0v00Hxv9KI8,2592
|
|
22
|
+
humalab/dists/log_uniform.py,sha256=mcJUYSoapxsIiynq_MZS_1NH1sxlC-Oupop2S3-EVHw,2626
|
|
23
|
+
humalab/dists/truncated_gaussian.py,sha256=tB0BQHaiSDmB1eNb143dKHysbDEG3_pjuCzYBOy4ks8,4009
|
|
24
|
+
humalab/dists/uniform.py,sha256=ouUAY8fvtu7azNCltU9g5t8jCw5OFQyYp8BlD7OWS5E,2545
|
|
25
|
+
humalab/metrics/__init__.py,sha256=lI1QCl_8mws5yfxxrAHCoIj1n5WEtiTZB5mTGFqAPCo,200
|
|
26
|
+
humalab/metrics/code.py,sha256=CybaYFX3KdJLFGshSY9Ss1jpkWwA5X2wD0hZNZJXUJw,713
|
|
27
|
+
humalab/metrics/metric.py,sha256=3lw3386UE3-pWHsOcYXoEM_RBfFR38bqd8Ehzj7aByw,1970
|
|
28
|
+
humalab/metrics/scenario_stats.py,sha256=lW-8tYrKh1nc_mclF7tg_o0UrhDoNgkVHPtabHgzdiQ,3004
|
|
29
|
+
humalab/metrics/summary.py,sha256=Y6AbDJv7vF4N82JqkTmJuwyaJ9WnlgJ6aExT8SSqnGQ,2194
|
|
30
|
+
humalab/scenarios/__init__.py,sha256=Q76ohPaMrU_NVwVVFQrxJIzIFjtibaOS60ljV1I54Os,148
|
|
31
|
+
humalab/scenarios/scenario.py,sha256=SmknTAZ3f304DmOSAKIkaZljrZ-ucxHs062CQKtS7js,12326
|
|
32
|
+
humalab/scenarios/scenario_operator.py,sha256=GxOB20UP-A6J5Y_ftHbWHpIrTMV6dx52r09Tr-WXfWU,3152
|
|
33
|
+
humalab/scenarios/scenario_test.py,sha256=YYSzKfaeZVK0Kv09pVYgZvLP7Zrz02jgUOpQ-0btanc,24397
|
|
34
|
+
humalab-0.0.6.dist-info/licenses/LICENSE,sha256=Gy0Nw_Z9pbrNSu-loW-PCDWJyrC8eWpIqqIGW-DFtp8,1064
|
|
35
|
+
humalab-0.0.6.dist-info/METADATA,sha256=KqqLNrCKPoBkDNYRwUKxjZoS2jogk7pHLaKYBHcBjmE,1704
|
|
36
|
+
humalab-0.0.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
37
|
+
humalab-0.0.6.dist-info/entry_points.txt,sha256=aY-hS7Kg8y5kGgYA14YmtTz5odBrgJIZ2fQMXAbVW_U,49
|
|
38
|
+
humalab-0.0.6.dist-info/top_level.txt,sha256=hp7XXBDE40hi9T3Jx6mPFc6wJbAMzektD5VWXlSCW6o,8
|
|
39
|
+
humalab-0.0.6.dist-info/RECORD,,
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
from humalab.assets.files.resource_file import ResourceFile
|
|
2
|
-
from humalab.humalab_config import HumalabConfig
|
|
3
|
-
from humalab.humalab_api_client import HumaLabApiClient
|
|
4
|
-
from humalab.assets.files.urdf_file import URDFFile
|
|
5
|
-
import os
|
|
6
|
-
from typing import Any
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class ResourceManager:
|
|
10
|
-
def __init__(self,
|
|
11
|
-
api_key: str | None = None,
|
|
12
|
-
host: str | None = None,
|
|
13
|
-
timeout: float | None = None):
|
|
14
|
-
self._humalab_config = HumalabConfig()
|
|
15
|
-
self._base_url = host or self._humalab_config.base_url
|
|
16
|
-
self._api_key = api_key or self._humalab_config.api_key
|
|
17
|
-
self._timeout = timeout or self._humalab_config.timeout
|
|
18
|
-
|
|
19
|
-
self._api_client = HumaLabApiClient(base_url=self._base_url,
|
|
20
|
-
api_key=self._api_key,
|
|
21
|
-
timeout=self._timeout)
|
|
22
|
-
|
|
23
|
-
def _asset_dir(self, name: str, version: int) -> str:
|
|
24
|
-
return os.path.join(self._humalab_config.workspace_path, "assets", name, f"{version}")
|
|
25
|
-
|
|
26
|
-
def _create_asset_dir(self, name: str, version: int) -> bool:
|
|
27
|
-
asset_dir = self._asset_dir(name, version)
|
|
28
|
-
if not os.path.exists(asset_dir):
|
|
29
|
-
os.makedirs(asset_dir, exist_ok=True)
|
|
30
|
-
return True
|
|
31
|
-
return False
|
|
32
|
-
|
|
33
|
-
def download(self,
|
|
34
|
-
project: str,
|
|
35
|
-
name: str,
|
|
36
|
-
version: int | None=None) -> Any:
|
|
37
|
-
resource = self._api_client.get_resource(project_name=project, name=name, version=version)
|
|
38
|
-
filename = os.path.basename(resource['resource_url'])
|
|
39
|
-
filename = os.path.join(self._asset_dir(name, resource["version"]), filename)
|
|
40
|
-
if self._create_asset_dir(name, resource["version"]):
|
|
41
|
-
file_content = self._api_client.download_resource(project_name=project, name="lerobot")
|
|
42
|
-
with open(filename, "wb") as f:
|
|
43
|
-
f.write(file_content)
|
|
44
|
-
|
|
45
|
-
if resource["resource_type"].lower() == "urdf":
|
|
46
|
-
return URDFFile(name=resource["name"],
|
|
47
|
-
version=resource["version"],
|
|
48
|
-
description=resource.get("description"),
|
|
49
|
-
filename=filename,
|
|
50
|
-
urdf_filename=resource.get("filename"),
|
|
51
|
-
created_at=resource.get("created_at"))
|
|
52
|
-
|
|
53
|
-
return ResourceFile(name=name,
|
|
54
|
-
version=resource["version"],
|
|
55
|
-
filename=filename,
|
|
56
|
-
resource_type=resource["resource_type"],
|
|
57
|
-
description=resource.get("description"),
|
|
58
|
-
created_at=resource.get("created_at"))
|
humalab/evaluators/__init__.py
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import random
|
|
2
|
-
|
|
3
|
-
def evaluate(video_path: str | list, task: str | list) -> dict | list[dict]:
|
|
4
|
-
"""
|
|
5
|
-
Evaluate the video and return metrics.
|
|
6
|
-
"""
|
|
7
|
-
# Placeholder implementation
|
|
8
|
-
if isinstance(video_path, list):
|
|
9
|
-
return [{"video_path": vp, "task": t,
|
|
10
|
-
"score": random.uniform(0, 1),
|
|
11
|
-
"confidence": random.uniform(0, 1)} for vp, t in zip(video_path, task)]
|
|
12
|
-
else:
|
|
13
|
-
return {"video_path": video_path, "task": task, "score": random.uniform(0, 1),
|
|
14
|
-
"confidence": random.uniform(0, 1)}
|
|
15
|
-
|
|
16
|
-
__all__ = ["evaluate"]
|
humalab/humalab_main.py
DELETED
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
from humalab import init, login
|
|
2
|
-
|
|
3
|
-
from humalab.assets.files.resource_file import ResourceFile
|
|
4
|
-
from humalab.assets.files.urdf_file import URDFFile
|
|
5
|
-
from humalab.assets.resource_manager import ResourceManager
|
|
6
|
-
|
|
7
|
-
# hlb_UJRzdxW4B0e4zSuy2PRwdOBu2d1zWQDNbnQykWiOdqw
|
|
8
|
-
if __name__ == "__main__":
|
|
9
|
-
login(api_key="hlb_srVXVzRgiVbA_9a0TRcbQmrfkoeEI0STVBX1dUubkiU",
|
|
10
|
-
host="http://localhost:8000")
|
|
11
|
-
|
|
12
|
-
with init(project="test",
|
|
13
|
-
name="my first run",
|
|
14
|
-
description="testing the humalab sdk",
|
|
15
|
-
tags=["tag1", "tag2"],
|
|
16
|
-
scenario_id="ff85e0c2-ba92-4b08-82df-9e6e87366ecd"
|
|
17
|
-
#scenario_id="941f9f8a-cf5a-4099-8da3-557e44f94037"
|
|
18
|
-
) as run:
|
|
19
|
-
print(f"Run ID: {run.id}")
|
|
20
|
-
print(f"Run Name: {run.name}")
|
|
21
|
-
print(f"Run Description: {run.description}")
|
|
22
|
-
print(f"Run Tags: {run.tags}")
|
|
23
|
-
print(f"Run Scenario YAML:\n{run.scenario.yaml}")
|
|
24
|
-
|
|
25
|
-
scenario = run.scenario
|
|
26
|
-
# Simulate some operations
|
|
27
|
-
# print("CUP position: ", scenario.scenario.cup.position)
|
|
28
|
-
# print("CUP orientation: ", scenario.scenario.cup.orientation)
|
|
29
|
-
# print("Asset: ", scenario.scenario.cup.asset)
|
|
30
|
-
# print("Friction: ", scenario.scenario.cup.friction)
|
|
31
|
-
print("Num Objects: ", scenario.scenario.jkjk)
|
|
32
|
-
scenario.reset()
|
|
33
|
-
print("======================SCENARIO RESET==========================")
|
|
34
|
-
# print("CUP position: ", scenario.scenario.cup.position)
|
|
35
|
-
# print("CUP orientation: ", scenario.scenario.cup.orientation)
|
|
36
|
-
# print("Asset: ", scenario.scenario.cup.asset)
|
|
37
|
-
# print("Friction: ", scenario.scenario.cup.friction)
|
|
38
|
-
print("Num Objects: ", scenario.scenario.jkjk)
|
|
39
|
-
|
|
40
|
-
scenario_string = """
|
|
41
|
-
scenario:
|
|
42
|
-
cup:
|
|
43
|
-
position: "${uniform_3d: [0.7, 0.7, 0.7],
|
|
44
|
-
[1.5, 1.3, 0.7]}"
|
|
45
|
-
orientation: "${uniform: 0.3, 0.7}"
|
|
46
|
-
asset: "${categorical_1d: ['lerobot', 'apple2', 'apple3'], [0.1, 0.3, 0.5]}"
|
|
47
|
-
friction: "${gaussian_1d: 0.3, 0.05}"
|
|
48
|
-
hello: 13
|
|
49
|
-
jkjk: test
|
|
50
|
-
num_objects: "${discrete_1d: 5, 10}"
|
|
51
|
-
dfdjkjk: "hello"
|
|
52
|
-
"""
|
|
53
|
-
with init(
|
|
54
|
-
project="test",
|
|
55
|
-
name="my first run",
|
|
56
|
-
description="testing the humalab sdk",
|
|
57
|
-
tags=["tag1", "tag2"],
|
|
58
|
-
scenario=scenario_string,
|
|
59
|
-
auto_create_scenario=False) as run:
|
|
60
|
-
print(f"Run ID: {run.id}")
|
|
61
|
-
print(f"Run Name: {run.name}")
|
|
62
|
-
print(f"Run Description: {run.description}")
|
|
63
|
-
print(f"Run Tags: {run.tags}")
|
|
64
|
-
print(f"Run Scenario YAML:\n{run.scenario.yaml}")
|
|
65
|
-
|
|
66
|
-
scenario = run.scenario
|
|
67
|
-
# Simulate some operations
|
|
68
|
-
print("CUP position: ", scenario.scenario.cup.position)
|
|
69
|
-
print("CUP orientation: ", scenario.scenario.cup.orientation)
|
|
70
|
-
print("Asset: ", scenario.scenario.cup.asset)
|
|
71
|
-
print("Friction: ", scenario.scenario.cup.friction)
|
|
72
|
-
print("Num Objects: ", scenario.scenario.num_objects)
|
|
73
|
-
scenario.reset()
|
|
74
|
-
print("======================SCENARIO RESET==========================")
|
|
75
|
-
print("CUP position: ", scenario.scenario.cup.position)
|
|
76
|
-
print("CUP orientation: ", scenario.scenario.cup.orientation)
|
|
77
|
-
print("Asset: ", scenario.scenario.cup.asset)
|
|
78
|
-
print("Friction: ", scenario.scenario.cup.friction)
|
|
79
|
-
print("Num Objects: ", scenario.scenario.num_objects)
|
|
80
|
-
|
|
81
|
-
resource = ResourceManager()
|
|
82
|
-
urdf_file: URDFFile = resource.download(project="default", name="lerobot", version=1)
|
|
83
|
-
print("URDF File: ", urdf_file.filename)
|
|
84
|
-
print("URDF Description: ", urdf_file.description)
|
|
85
|
-
print("URDF Created At: ", urdf_file.created_at)
|
|
86
|
-
print("URDF Root Path: ", urdf_file._root_path)
|
|
87
|
-
print("URDF Root Path: ", urdf_file._urdf_filename)
|
|
88
|
-
|
|
89
|
-
urdf_file: URDFFile = resource.download(project="default", name="lerobot")
|
|
90
|
-
print("URDF File: ", urdf_file.filename)
|
|
91
|
-
print("URDF Description: ", urdf_file.description)
|
|
92
|
-
print("URDF Created At: ", urdf_file.created_at)
|
|
93
|
-
print("URDF Root Path: ", urdf_file._root_path)
|
|
94
|
-
print("URDF Root Path: ", urdf_file._urdf_filename)
|
|
95
|
-
|
|
96
|
-
atlas_file: ResourceFile = resource.download(project="default", name="atlas")
|
|
97
|
-
print("Atlas File: ", atlas_file.filename)
|
|
98
|
-
print("Atlas Description: ", atlas_file.description)
|
|
99
|
-
print("Atlas Created At: ", atlas_file.created_at)
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
"""
|
|
103
|
-
humalab_config = HumalabConfig()
|
|
104
|
-
base_url = humalab_config.base_url
|
|
105
|
-
api_key = humalab_config.api_key
|
|
106
|
-
timeout = humalab_config.timeout
|
|
107
|
-
|
|
108
|
-
api_client = HumaLabApiClient(base_url=base_url,
|
|
109
|
-
api_key=api_key,
|
|
110
|
-
timeout=timeout)
|
|
111
|
-
resource = api_client.get_resource(name="lerobot", version=1)
|
|
112
|
-
print("Resource metadata: ", resource)
|
|
113
|
-
file_content = api_client.download_resource(name="lerobot")
|
|
114
|
-
filename = os.path.basename(resource['resource_url'])
|
|
115
|
-
filename = os.path.join(humalab_config.workspace_path, filename)
|
|
116
|
-
with open(filename, "wb") as f:
|
|
117
|
-
f.write(file_content)
|
|
118
|
-
print(f"Resource file downloaded: {filename}")
|
|
119
|
-
"""
|
humalab/metrics/dist_metric.py
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
from humalab.metrics.metric import MetricGranularity, Metrics, MetricType
|
|
3
|
-
|
|
4
|
-
class DistributionMetric(Metrics):
|
|
5
|
-
def __init__(self,
|
|
6
|
-
name: str,
|
|
7
|
-
distribution_type: str,
|
|
8
|
-
episode_id: str,
|
|
9
|
-
run_id: str,
|
|
10
|
-
granularity: MetricGranularity = MetricGranularity.EPISODE) -> None:
|
|
11
|
-
"""
|
|
12
|
-
Initialize the distribution metric.
|
|
13
|
-
|
|
14
|
-
Args:
|
|
15
|
-
name (str): The name of the metric.
|
|
16
|
-
distribution_type (str): The type of distribution (e.g., "normal", "uniform").
|
|
17
|
-
episode_id (str): The ID of the episode.
|
|
18
|
-
run_id (str): The ID of the run.
|
|
19
|
-
granularity (MetricGranularity): The granularity of the metric.
|
|
20
|
-
"""
|
|
21
|
-
super().__init__(name, MetricType.DISTRIBUTION, episode_id=episode_id, run_id=run_id, granularity=granularity)
|
|
22
|
-
self.distribution_type = distribution_type
|
humalab-0.0.5.dist-info/RECORD
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
humalab/__init__.py,sha256=LIL4eEPT_Boiond6pZegbAPvZwNX-ZWHHMVPkv3ehcU,140
|
|
2
|
-
humalab/constants.py,sha256=YSiUI7R7g0gkImD6ezufRlOMdIBS5wJ--dLy11Qb2qY,135
|
|
3
|
-
humalab/episode.py,sha256=mfoz57O2gQBYWbkqqFN8bzqjC8pjIib3vp0Gn6k3sHA,733
|
|
4
|
-
humalab/humalab.py,sha256=dcIS6bbMCbwl6654OFXmcU3E38FBXxWUC3H9c6wOsws,6208
|
|
5
|
-
humalab/humalab_api_client.py,sha256=QS0VMLpT4hObT9um9Pg1TkSdVabRzJ0IBpsn87kz_v4,23103
|
|
6
|
-
humalab/humalab_config.py,sha256=K-RC1MfAhuD_FCORySV7uyjKzW-bYf2tY6EOZslR0kg,2316
|
|
7
|
-
humalab/humalab_main.py,sha256=rhNPPJUODNqiKzbRce6TtgTyAzp_nKaN4i6kv18iTbw,5097
|
|
8
|
-
humalab/humalab_test.py,sha256=TI2EEbEFmkFUL1OBpPbEmQWgkTZ-tRwtZQ7AIzZxGHw,18469
|
|
9
|
-
humalab/run.py,sha256=PgyZ6DW6Dy-eNqWIKh9NXClDd4m5BVNZaLZV9h62Z5g,7480
|
|
10
|
-
humalab/scenario.py,sha256=Aw5S9_JZJLqmsMeDJxL5GwPklQahaPMLiTVVUBsE4IQ,12274
|
|
11
|
-
humalab/scenario_test.py,sha256=9AyDj_l_43bO_ovhzhIvADTh4bAkq8YaMnPQ_sRPTog,28604
|
|
12
|
-
humalab/assets/__init__.py,sha256=xDYsBILuE1PZ2inkjc4uuiPI0o7Hs_EOXmOfj7tMoAM,146
|
|
13
|
-
humalab/assets/archive.py,sha256=PALZRnpNExDfXiURVNEj6xxWqcW4nd9UBZ7QIHa8mI8,3119
|
|
14
|
-
humalab/assets/resource_manager.py,sha256=WcthO8Bgw_FjJEDPIWEBPP4XNkynoH7-raftjdjfubg,2684
|
|
15
|
-
humalab/assets/files/__init__.py,sha256=9XF-Zp2nldx060v8A3tMTcB5o5vJCUTFKF9rrIFZE_s,111
|
|
16
|
-
humalab/assets/files/resource_file.py,sha256=mvwmE13dQWUu4XGi4kL6hzsYadldt3fVkGubRZ1D-6w,1020
|
|
17
|
-
humalab/assets/files/urdf_file.py,sha256=fCn8lDnLnRJvM3r1XcRfx0jRDPnG0yt7H5uCy1lReaQ,2645
|
|
18
|
-
humalab/dists/__init__.py,sha256=Q7zQbFGC_CnTgExMcnRtJdqJitqy1oBk4D6Qyvunlqc,387
|
|
19
|
-
humalab/dists/bernoulli.py,sha256=cXLE0zpnGXInpp5jneD4D0BKO1AOIQNoJwtoNAJhiCE,1973
|
|
20
|
-
humalab/dists/categorical.py,sha256=plEIZIx5LRiaNreUCIk9EkhBD6eflxwMJy3XbseeUBw,2114
|
|
21
|
-
humalab/dists/discrete.py,sha256=kaygCgPpeUK5uXYZVUrpMFuUFU2_IQwTBw57pyKW79U,2887
|
|
22
|
-
humalab/dists/distribution.py,sha256=t0qTUjS_N0adiy_j2fdf-NHSlRs1pr0swpnszizs04I,1048
|
|
23
|
-
humalab/dists/gaussian.py,sha256=JEpcA7flE5ZLpUC_LExdoZu-lGEbjDky9ux6IjeN8h8,2590
|
|
24
|
-
humalab/dists/log_uniform.py,sha256=4DV5rCAIjhaIxG1Fu6x9r9qdidwvbCyv4x2NusutBeg,2624
|
|
25
|
-
humalab/dists/truncated_gaussian.py,sha256=aYSy24Rvk7Uk5qoHj7NcnD3u-zK1PjUGOQDcEF22WZQ,4005
|
|
26
|
-
humalab/dists/uniform.py,sha256=ouUAY8fvtu7azNCltU9g5t8jCw5OFQyYp8BlD7OWS5E,2545
|
|
27
|
-
humalab/evaluators/__init__.py,sha256=p1JmSbA01s9_JvNteuIy-gk7-JQTWAkQGqgJxqz34-Q,581
|
|
28
|
-
humalab/metrics/__init__.py,sha256=e0PPkAMP5nW-kGfb67SjMMlgxK9Bkp7nQVD-JWoV-qw,246
|
|
29
|
-
humalab/metrics/dist_metric.py,sha256=C7IpdFolw-VpkTHv-HTAK63kafH-WUjRTLxbF7h4W7g,921
|
|
30
|
-
humalab/metrics/metric.py,sha256=W1mWQKEPVs9x257zzJvJQmAadRNnDqGAEU2BAq1skwM,4194
|
|
31
|
-
humalab/metrics/summary.py,sha256=CloYeVkYgZAiaeM2gS6V8_tABukTkxAFJt0mpfmpbLI,2255
|
|
32
|
-
humalab-0.0.5.dist-info/licenses/LICENSE,sha256=Gy0Nw_Z9pbrNSu-loW-PCDWJyrC8eWpIqqIGW-DFtp8,1064
|
|
33
|
-
humalab-0.0.5.dist-info/METADATA,sha256=on4y8DY6lYIvJqCmyTlDAyriRrYWTnHjoo_LgExTxDg,1704
|
|
34
|
-
humalab-0.0.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
35
|
-
humalab-0.0.5.dist-info/entry_points.txt,sha256=aY-hS7Kg8y5kGgYA14YmtTz5odBrgJIZ2fQMXAbVW_U,49
|
|
36
|
-
humalab-0.0.5.dist-info/top_level.txt,sha256=hp7XXBDE40hi9T3Jx6mPFc6wJbAMzektD5VWXlSCW6o,8
|
|
37
|
-
humalab-0.0.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|