code-loader 1.0.185__py3-none-any.whl → 1.0.186.dev0__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.
- code_loader/contract/visualizer_classes.py +15 -5
- code_loader/inner_leap_binder/leapbinder_decorators.py +77 -16
- code_loader/plot_functions/plot_functions.py +25 -5
- code_loader-1.0.186.dev0.dist-info/LICENSE +21 -0
- {code_loader-1.0.185.dist-info → code_loader-1.0.186.dev0.dist-info}/METADATA +3 -3
- {code_loader-1.0.185.dist-info → code_loader-1.0.186.dev0.dist-info}/RECORD +8 -7
- {code_loader-1.0.185.dist-info → code_loader-1.0.186.dev0.dist-info}/WHEEL +1 -1
- /code_loader-1.0.185.dist-info/LICENSE → /LICENSE +0 -0
|
@@ -32,12 +32,14 @@ class LeapImage:
|
|
|
32
32
|
Visualizer representing an image for Tensorleap.
|
|
33
33
|
|
|
34
34
|
Attributes:
|
|
35
|
-
data (npt.NDArray[np.float32] | npt.NDArray[np.uint8]): The image data.
|
|
35
|
+
data (npt.NDArray[np.float32] | npt.NDArray[np.uint8]): The image data, shaped [H, W, 3] or [H, W, 1].
|
|
36
|
+
Expected pixel range is [0, 255]. Float values are cast to int (truncated, not scaled), so a
|
|
37
|
+
normalized [0, 1] float image renders near-black - scale it to [0, 255] or pass uint8.
|
|
36
38
|
type (LeapDataType): The data type, default is LeapDataType.Image.
|
|
37
39
|
compress: Optional[bool]: Whether to compress the image (.jpg) or not (.png)
|
|
38
40
|
|
|
39
41
|
Example:
|
|
40
|
-
image_data = np.random.rand(100, 100, 3).astype(np.float32)
|
|
42
|
+
image_data = (np.random.rand(100, 100, 3) * 255).astype(np.float32) # [0, 255]
|
|
41
43
|
leap_image = LeapImage(data=image_data)
|
|
42
44
|
"""
|
|
43
45
|
data: Union[npt.NDArray[np.float32], npt.NDArray[np.uint8]]
|
|
@@ -60,10 +62,12 @@ class LeapVideo:
|
|
|
60
62
|
|
|
61
63
|
Attributes:
|
|
62
64
|
data (npt.NDArray[np.float32] | npt.NDArray[np.uint8]): The video data, shaped [T, H, W, C], where T is the number of frames.
|
|
65
|
+
Note the range differs from still images: float video is expected in [0, 1] (it is scaled by 255),
|
|
66
|
+
while uint8 is used as-is in [0, 255]. Float values above 1 saturate to white.
|
|
63
67
|
type (LeapDataType): The data type, default is LeapDataType.Video.
|
|
64
68
|
|
|
65
69
|
Example:
|
|
66
|
-
video_data = np.random.rand(10, 100, 100, 3).astype(np.float32)
|
|
70
|
+
video_data = np.random.rand(10, 100, 100, 3).astype(np.float32) # [0, 1]
|
|
67
71
|
leap_video = LeapVideo(data=video_data)
|
|
68
72
|
"""
|
|
69
73
|
data: Union[npt.NDArray[np.float32], npt.NDArray[np.uint8]]
|
|
@@ -84,11 +88,13 @@ class LeapImageWithBBox:
|
|
|
84
88
|
|
|
85
89
|
Attributes:
|
|
86
90
|
data (npt.NDArray[np.float32] | npt.NDArray[np.uint8]): The image data, shaped [H, W, 3] or [H, W, 1].
|
|
91
|
+
Expected pixel range is [0, 255]. Float values are cast to int (truncated, not scaled), so a
|
|
92
|
+
normalized [0, 1] float image renders near-black - scale it to [0, 255] or pass uint8.
|
|
87
93
|
bounding_boxes (List[BoundingBox]): List of Tensorleap bounding boxes objects in relative size to image size.
|
|
88
94
|
type (LeapDataType): The data type, default is LeapDataType.ImageWithBBox.
|
|
89
95
|
|
|
90
96
|
Example:
|
|
91
|
-
image_data = np.random.rand(100, 100, 3).astype(np.float32)
|
|
97
|
+
image_data = (np.random.rand(100, 100, 3) * 255).astype(np.float32) # [0, 255]
|
|
92
98
|
bbox = BoundingBox(x=0.5, y=0.5, width=0.2, height=0.2, confidence=0.9, label="object")
|
|
93
99
|
leap_image_with_bbox = LeapImageWithBBox(data=image_data, bounding_boxes=[bbox])
|
|
94
100
|
"""
|
|
@@ -231,6 +237,8 @@ class LeapImageMask:
|
|
|
231
237
|
Attributes:
|
|
232
238
|
mask (npt.NDArray[np.uint8]): The mask data, shaped [H, W].
|
|
233
239
|
image (npt.NDArray[np.float32] | npt.NDArray[np.uint8]): The image data, shaped [H, W, 3] or shaped [H, W, 1].
|
|
240
|
+
Any pixel range is accepted: the image is min-max normalized to [0, 255] for display, so unlike the
|
|
241
|
+
plain Image visualizer, a normalized [0, 1] float renders fine here.
|
|
234
242
|
labels (List[str]): Labels associated with the mask regions; e.g., class names for segmented objects. The length of `labels` should match the number of unique values in `mask`.
|
|
235
243
|
type (LeapDataType): The data type, default is LeapDataType.ImageMask.
|
|
236
244
|
|
|
@@ -304,12 +312,14 @@ class LeapImageWithHeatmap:
|
|
|
304
312
|
|
|
305
313
|
Attributes:
|
|
306
314
|
image (npt.NDArray[np.float32]): The image data, shaped [H, W, C], where C is the number of channels.
|
|
315
|
+
Expected pixel range is [0, 255] (float is truncated to int, not scaled), so a normalized [0, 1] float
|
|
316
|
+
base image renders near-black - scale it to [0, 255]. The overlaid heatmaps are normalized separately.
|
|
307
317
|
heatmaps (npt.NDArray[np.float32]): The heatmap data, shaped [N, H, W], where N is the number of heatmaps.
|
|
308
318
|
labels (List[str]): Labels associated with the heatmaps; e.g., feature names or attention regions. The length of `labels` should match the number of heatmaps, N.
|
|
309
319
|
type (LeapDataType): The data type, default is LeapDataType.ImageWithHeatmap.
|
|
310
320
|
|
|
311
321
|
Example:
|
|
312
|
-
image_data = np.random.rand(100, 100, 3).astype(np.float32)
|
|
322
|
+
image_data = (np.random.rand(100, 100, 3) * 255).astype(np.float32) # [0, 255]
|
|
313
323
|
heatmaps = np.random.rand(3, 100, 100).astype(np.float32)
|
|
314
324
|
labels = ["heatmap1", "heatmap2", "heatmap3"]
|
|
315
325
|
leap_image_with_heatmap = LeapImageWithHeatmap(image=image_data, heatmaps=heatmaps, labels=labels)
|
|
@@ -768,14 +768,20 @@ def tensorleap_custom_metric(name: str,
|
|
|
768
768
|
|
|
769
769
|
leap_binder.setup_container.metrics[-1].metric_handler_data.direction = effective_direction
|
|
770
770
|
|
|
771
|
+
# Broadcast a single `compute_insights` value across all dict keys (and fill missing keys
|
|
772
|
+
# for a partial dict), so it applies to every metric in the returned dict.
|
|
773
|
+
if compute_insights is None:
|
|
774
|
+
effective_compute_insights = None
|
|
775
|
+
elif isinstance(compute_insights, dict):
|
|
776
|
+
effective_compute_insights = {key: compute_insights.get(key, True) for key in result_keys}
|
|
777
|
+
else:
|
|
778
|
+
effective_compute_insights = {key: compute_insights for key in result_keys}
|
|
779
|
+
|
|
780
|
+
leap_binder.setup_container.metrics[-1].metric_handler_data.compute_insights = effective_compute_insights
|
|
781
|
+
|
|
771
782
|
if defaulted_direction_keys and not _call_from_tl_platform:
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
elif isinstance(compute_insights, dict):
|
|
775
|
-
effective_compute_insights = compute_insights
|
|
776
|
-
else:
|
|
777
|
-
effective_compute_insights = {k: compute_insights for k in result_keys}
|
|
778
|
-
warning_keys = {key for key in defaulted_direction_keys if effective_compute_insights.get(key, True)}
|
|
783
|
+
warning_keys = {key for key in defaulted_direction_keys
|
|
784
|
+
if (effective_compute_insights or {}).get(key, True)}
|
|
779
785
|
if warning_keys:
|
|
780
786
|
store_warning_by_param(
|
|
781
787
|
param_name=f"direction[{warning_keys}]",
|
|
@@ -1102,19 +1108,33 @@ def _viz_prefix(viz_name: str, leap_type_name: str) -> str:
|
|
|
1102
1108
|
return f"Visualizer '{viz_name}' ({leap_type_name}):"
|
|
1103
1109
|
|
|
1104
1110
|
|
|
1111
|
+
def _warn_nonfinite(arr, viz_name: str, leap_type_name: str, field_name: str = "image data") -> None:
|
|
1112
|
+
"""Warn when a float array contains NaN/Inf. Applies to every image-like visualizer, including
|
|
1113
|
+
ImageMask (whose min-max normalization also can't render non-finite values)."""
|
|
1114
|
+
if not isinstance(arr, np.ndarray) or arr.size == 0:
|
|
1115
|
+
return
|
|
1116
|
+
if np.issubdtype(arr.dtype, np.floating) and not np.all(np.isfinite(arr)):
|
|
1117
|
+
store_general_warning(
|
|
1118
|
+
key=("viz_nonfinite", viz_name, leap_type_name, field_name),
|
|
1119
|
+
message=f"{_viz_prefix(viz_name, leap_type_name)} {field_name} contains NaN or Inf values, "
|
|
1120
|
+
f"which will render incorrectly.",
|
|
1121
|
+
link_to_docs=_VIZ_DOCS,
|
|
1122
|
+
)
|
|
1123
|
+
|
|
1124
|
+
|
|
1105
1125
|
def _warn_image_value_range(image, viz_name: str, leap_type_name: str, field_name: str = "image data") -> None:
|
|
1106
|
-
"""Warn when image pixel values sit in a range that
|
|
1126
|
+
"""Warn when still-image pixel values sit in a range that renders near-black or clipped.
|
|
1127
|
+
|
|
1128
|
+
Applies to Image / ImageWithBBox / ImageWithHeatmap, which the engine encodes with cv2
|
|
1129
|
+
(saturate_cast float->uint8, no scaling). Float is therefore expected in [0, 255]; a
|
|
1130
|
+
normalized [0, 1] float renders near-black. (Video and ImageMask use different conventions.)
|
|
1131
|
+
"""
|
|
1107
1132
|
if not isinstance(image, np.ndarray) or image.size == 0:
|
|
1108
1133
|
return
|
|
1109
1134
|
prefix = _viz_prefix(viz_name, leap_type_name)
|
|
1110
1135
|
|
|
1111
1136
|
if np.issubdtype(image.dtype, np.floating):
|
|
1112
|
-
|
|
1113
|
-
store_general_warning(
|
|
1114
|
-
key=("viz_image_nonfinite", viz_name, leap_type_name, field_name),
|
|
1115
|
-
message=f"{prefix} {field_name} contains NaN or Inf values, which will render incorrectly.",
|
|
1116
|
-
link_to_docs=_VIZ_DOCS,
|
|
1117
|
-
)
|
|
1137
|
+
_warn_nonfinite(image, viz_name, leap_type_name, field_name)
|
|
1118
1138
|
finite = image[np.isfinite(image)]
|
|
1119
1139
|
if finite.size == 0:
|
|
1120
1140
|
return
|
|
@@ -1147,6 +1167,42 @@ def _warn_image_value_range(image, viz_name: str, leap_type_name: str, field_nam
|
|
|
1147
1167
|
)
|
|
1148
1168
|
|
|
1149
1169
|
|
|
1170
|
+
def _warn_video_value_range(video, viz_name: str, leap_type_name: str, field_name: str = "video data") -> None:
|
|
1171
|
+
"""Warn when video pixel values won't survive the engine's float->uint8 scaling.
|
|
1172
|
+
|
|
1173
|
+
Unlike still images, the engine scales float video by 255 (videoencoder.py), so float is
|
|
1174
|
+
expected in [0, 1]; values above 1 saturate to white and negatives clip to black. uint8 is
|
|
1175
|
+
used as-is in [0, 255].
|
|
1176
|
+
"""
|
|
1177
|
+
if not isinstance(video, np.ndarray) or video.size == 0:
|
|
1178
|
+
return
|
|
1179
|
+
prefix = _viz_prefix(viz_name, leap_type_name)
|
|
1180
|
+
|
|
1181
|
+
if np.issubdtype(video.dtype, np.floating):
|
|
1182
|
+
_warn_nonfinite(video, viz_name, leap_type_name, field_name)
|
|
1183
|
+
finite = video[np.isfinite(video)]
|
|
1184
|
+
if finite.size == 0:
|
|
1185
|
+
return
|
|
1186
|
+
mn, mx = float(finite.min()), float(finite.max())
|
|
1187
|
+
if mn < 0.0 or mx > 1.0:
|
|
1188
|
+
store_general_warning(
|
|
1189
|
+
key=("viz_video_range", viz_name, leap_type_name, field_name),
|
|
1190
|
+
message=(f"{prefix} {field_name} is float with values in [{mn:.3g}, {mx:.3g}], outside the "
|
|
1191
|
+
f"expected [0,1] range. Tensorleap scales float video by 255, so values > 1 saturate "
|
|
1192
|
+
f"to white and negatives clip to black. Provide float video in [0,1], or uint8 in [0,255]."),
|
|
1193
|
+
link_to_docs=_VIZ_DOCS,
|
|
1194
|
+
)
|
|
1195
|
+
elif np.issubdtype(video.dtype, np.integer):
|
|
1196
|
+
mn, mx = int(video.min()), int(video.max())
|
|
1197
|
+
if mx <= 1:
|
|
1198
|
+
store_general_warning(
|
|
1199
|
+
key=("viz_video_int_low", viz_name, leap_type_name, field_name),
|
|
1200
|
+
message=(f"{prefix} {field_name} is uint8 but values span only [{mn}, {mx}] - this will appear "
|
|
1201
|
+
f"near-black. uint8 video is used as-is in [0,255]; scale to [0,255] before casting."),
|
|
1202
|
+
link_to_docs=_VIZ_DOCS,
|
|
1203
|
+
)
|
|
1204
|
+
|
|
1205
|
+
|
|
1150
1206
|
def _warn_bbox_coords(bounding_boxes, viz_name: str, leap_type_name: str) -> None:
|
|
1151
1207
|
"""Warn when bbox coords are not relative [0,1] (i.e. look like absolute pixels)."""
|
|
1152
1208
|
for bbox in bounding_boxes:
|
|
@@ -1247,9 +1303,14 @@ def _emit_visualizer_warnings(result, viz_name: str, visualizer_type: LeapDataTy
|
|
|
1247
1303
|
_warn_image_value_range(result.data, viz_name, leap_type_name)
|
|
1248
1304
|
_warn_bbox_coords(result.bounding_boxes, viz_name, leap_type_name)
|
|
1249
1305
|
elif visualizer_type == LeapDataType.Video:
|
|
1250
|
-
|
|
1306
|
+
# Engine scales float video by 255 (videoencoder.py), so float is expected in [0,1] here,
|
|
1307
|
+
# the opposite of the still-image convention.
|
|
1308
|
+
_warn_video_value_range(result.data, viz_name, leap_type_name)
|
|
1251
1309
|
elif visualizer_type == LeapDataType.ImageMask:
|
|
1252
|
-
|
|
1310
|
+
# Engine min-max normalizes the mask image (MaskEngineVisualizer._rescale_min_max), so any
|
|
1311
|
+
# finite value range renders fine - no range warning here. NaN/Inf still break normalization,
|
|
1312
|
+
# so keep that check alongside the structural mask checks.
|
|
1313
|
+
_warn_nonfinite(result.image, viz_name, leap_type_name)
|
|
1253
1314
|
_warn_image_mask(result, viz_name, leap_type_name)
|
|
1254
1315
|
elif visualizer_type == LeapDataType.ImageWithHeatmap:
|
|
1255
1316
|
_warn_image_with_heatmap(result, viz_name, leap_type_name)
|
|
@@ -21,6 +21,25 @@ import math
|
|
|
21
21
|
|
|
22
22
|
from code_loader.contract.visualizer_classes import LeapImage, LeapImageWithBBox, LeapGraph, LeapText, \
|
|
23
23
|
LeapHorizontalBar, LeapImageMask, LeapTextMask, LeapImageWithHeatmap, LeapVideo
|
|
24
|
+
from code_loader.utils import rescale_min_max
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def _to_engine_image(image: np.ndarray) -> np.ndarray:
|
|
28
|
+
"""Match the engine's still-image encoding (cv2 saturate_cast): round + clip to [0,255],
|
|
29
|
+
no scaling, returned as uint8. Float is expected in [0,255]; a normalized [0,1] float
|
|
30
|
+
therefore renders near-black, exactly as it would on the platform."""
|
|
31
|
+
if np.issubdtype(image.dtype, np.floating):
|
|
32
|
+
return np.clip(np.rint(image), 0, 255).astype(np.uint8)
|
|
33
|
+
return np.clip(image, 0, 255).astype(np.uint8)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def _to_engine_video(video: np.ndarray) -> np.ndarray:
|
|
37
|
+
"""Match the engine's video encoding (videoencoder.py): float is scaled by 255 then clipped,
|
|
38
|
+
uint8 is used as-is. Float is expected in [0,1]."""
|
|
39
|
+
if np.issubdtype(video.dtype, np.floating):
|
|
40
|
+
return (video * 255).clip(0, 255).astype(np.uint8)
|
|
41
|
+
return np.clip(video, 0, 255).astype(np.uint8)
|
|
42
|
+
|
|
24
43
|
|
|
25
44
|
def run_only_on_non_mapping_mode():
|
|
26
45
|
"""
|
|
@@ -51,7 +70,7 @@ def plot_image_with_b_box(leap_data: LeapImageWithBBox, title: str) -> None:
|
|
|
51
70
|
visualize(leap_image_with_bbox, title)
|
|
52
71
|
"""
|
|
53
72
|
|
|
54
|
-
image = leap_data.data
|
|
73
|
+
image = _to_engine_image(leap_data.data)
|
|
55
74
|
bounding_boxes = leap_data.bounding_boxes
|
|
56
75
|
|
|
57
76
|
# Create figure and axes
|
|
@@ -107,7 +126,7 @@ def plot_image(leap_data: LeapImage, title: str) -> None:
|
|
|
107
126
|
title = "Image"
|
|
108
127
|
visualize(leap_image, title)
|
|
109
128
|
"""
|
|
110
|
-
image_data = leap_data.data
|
|
129
|
+
image_data = _to_engine_image(leap_data.data)
|
|
111
130
|
|
|
112
131
|
# If the image has one channel, convert it to a 3-channel image for display
|
|
113
132
|
if image_data.shape[2] == 1:
|
|
@@ -305,7 +324,8 @@ def plot_image_mask(leap_data: LeapImageMask, title: str) -> None:
|
|
|
305
324
|
visualize(leap_image_mask, title)
|
|
306
325
|
"""
|
|
307
326
|
|
|
308
|
-
image
|
|
327
|
+
# Engine min-max normalizes the mask image to [0,255] (MaskEngineVisualizer._rescale_min_max)
|
|
328
|
+
image = rescale_min_max(leap_data.image)
|
|
309
329
|
mask = leap_data.mask
|
|
310
330
|
labels = leap_data.labels
|
|
311
331
|
|
|
@@ -390,7 +410,7 @@ def plot_text_mask(leap_data: LeapTextMask, title: str) -> None:
|
|
|
390
410
|
|
|
391
411
|
@run_only_on_non_mapping_mode()
|
|
392
412
|
def plot_video(leap_data: LeapVideo, title: str) -> None:
|
|
393
|
-
video_data = leap_data.data
|
|
413
|
+
video_data = _to_engine_video(leap_data.data)
|
|
394
414
|
fig, ax = plt.subplots()
|
|
395
415
|
fig.patch.set_facecolor('black')
|
|
396
416
|
ax.set_facecolor('black')
|
|
@@ -416,7 +436,7 @@ def plot_image_with_heatmap(leap_data: LeapImageWithHeatmap, title: str) -> None
|
|
|
416
436
|
title = "Image With Heatmap"
|
|
417
437
|
visualize(leap_image_with_heatmap, title)
|
|
418
438
|
"""
|
|
419
|
-
image = leap_data.image
|
|
439
|
+
image = _to_engine_image(leap_data.image)
|
|
420
440
|
heatmaps = leap_data.heatmaps
|
|
421
441
|
labels = leap_data.labels
|
|
422
442
|
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 TensorLeap
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: code-loader
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.186.dev0
|
|
4
4
|
Summary:
|
|
5
|
+
Home-page: https://github.com/tensorleap/code-loader
|
|
5
6
|
License: MIT
|
|
6
7
|
Author: dorhar
|
|
7
8
|
Author-email: doron.harnoy@tensorleap.ai
|
|
@@ -19,7 +20,6 @@ Requires-Dist: numpy (>=2.3.2,<3.0.0) ; python_version >= "3.11" and python_vers
|
|
|
19
20
|
Requires-Dist: psutil (>=5.9.5,<6.0.0)
|
|
20
21
|
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
|
|
21
22
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
|
22
|
-
Project-URL: Homepage, https://github.com/tensorleap/code-loader
|
|
23
23
|
Project-URL: Repository, https://github.com/tensorleap/code-loader
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
25
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
LICENSE,sha256=qIwWjdspQeSMTtnFZBC8MuT-95L02FPvzRUdWFxrwJY,1067
|
|
1
2
|
code_loader/__init__.py,sha256=outxRQ0M-zMfV0QGVJmAed5qWfRmyD0TV6-goEGAzBw,406
|
|
2
3
|
code_loader/contract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
4
|
code_loader/contract/datasetclasses.py,sha256=RYZcnX7vLMYhyQtCbX2PscVFNAYULxgAA9U4DRRfLqA,10456
|
|
@@ -6,7 +7,7 @@ code_loader/contract/exceptions.py,sha256=jWqu5i7t-0IG0jGRsKF4DjJdrsdpJjIYpUkN1F
|
|
|
6
7
|
code_loader/contract/mapping.py,sha256=sWJhpng-IkOzQnWQdMT5w2ZZ3X1Z_OOzSwCLXIS7oxE,1446
|
|
7
8
|
code_loader/contract/responsedataclasses.py,sha256=5VFgGjRubMW8ItMPils3rkBNejunCGLaa192AIi-xko,4925
|
|
8
9
|
code_loader/contract/sim_config.py,sha256=le8KMALZiP0WU4UcuKnTOSWBW2rNjpnWYfII502NqDM,3493
|
|
9
|
-
code_loader/contract/visualizer_classes.py,sha256=
|
|
10
|
+
code_loader/contract/visualizer_classes.py,sha256=cWXkBBYk_YP7-VdNwLJvSPQfvBAvoNWircgIuZwHQVc,16519
|
|
10
11
|
code_loader/default_losses.py,sha256=NoOQym1106bDN5dcIk56Elr7ZG5quUHArqfP5-Nyxyo,1139
|
|
11
12
|
code_loader/default_metrics.py,sha256=2XSlyNw_XLDGSJDoz5W_Evi5wbL0dhwq24pPr15vSPc,5025
|
|
12
13
|
code_loader/experiment_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -21,17 +22,17 @@ code_loader/experiment_api/utils.py,sha256=XZHtxge12TS4H4-8PjV3sKuhp8Ud6ojAiIzTZ
|
|
|
21
22
|
code_loader/experiment_api/workingspace_config_utils.py,sha256=DLzXQCg4dgTV_YgaSbeTVzq-2ja_SQw4zi7LXwKL9cY,990
|
|
22
23
|
code_loader/inner_leap_binder/__init__.py,sha256=koOlJyMNYzGbEsoIbXathSmQ-L38N_pEXH_HvL7beXU,99
|
|
23
24
|
code_loader/inner_leap_binder/leapbinder.py,sha256=XLYYcV50qjMvoC1S6WW0tLBch_0g5gl1UyHiVSWYbvg,40491
|
|
24
|
-
code_loader/inner_leap_binder/leapbinder_decorators.py,sha256=
|
|
25
|
+
code_loader/inner_leap_binder/leapbinder_decorators.py,sha256=1E-gj0Ydy3xHdiIn1X6Q8b80uuFCY0yYvK_npd7o404,118767
|
|
25
26
|
code_loader/leaploader.py,sha256=K9Q5kiCZ_A2GkS5qOEantAMvWGaz3bmO1X8buXDSpgg,44682
|
|
26
27
|
code_loader/leaploaderbase.py,sha256=l36qDA00GhZEG5NLKpEtAXgWJA-UQQIhNFGxywK7mUA,6530
|
|
27
28
|
code_loader/mixpanel_tracker.py,sha256=rNwRmFifNbdUoqLQvvhhgpKczWpWiEmd8MfyJe27sxw,9131
|
|
28
29
|
code_loader/plot_functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
code_loader/plot_functions/plot_functions.py,sha256=
|
|
30
|
+
code_loader/plot_functions/plot_functions.py,sha256=2DC-zlVaN13P4VNx5d8csgs80C6SisaeP1-Kq2LW7iM,16075
|
|
30
31
|
code_loader/plot_functions/visualize.py,sha256=gsBAYYkwMh7jIpJeDMPS8G4CW-pxwx6LznoQIvi4vpo,657
|
|
31
32
|
code_loader/utils.py,sha256=YecipkdTA-VcE9F0RQcY9cFnY8P3AksPnHM2Db7xUSk,3972
|
|
32
33
|
code_loader/visualizers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
34
|
code_loader/visualizers/default_visualizers.py,sha256=onRnLE_TXfgLN4o52hQIOOhUcFexGlqJ3xSpQDVLuZM,2604
|
|
34
|
-
code_loader-1.0.
|
|
35
|
-
code_loader-1.0.
|
|
36
|
-
code_loader-1.0.
|
|
37
|
-
code_loader-1.0.
|
|
35
|
+
code_loader-1.0.186.dev0.dist-info/LICENSE,sha256=qIwWjdspQeSMTtnFZBC8MuT-95L02FPvzRUdWFxrwJY,1067
|
|
36
|
+
code_loader-1.0.186.dev0.dist-info/METADATA,sha256=b2SFTWfyZacJ5BfWdGa1iDQsydJSfJNIF09H5a-_S10,1095
|
|
37
|
+
code_loader-1.0.186.dev0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
38
|
+
code_loader-1.0.186.dev0.dist-info/RECORD,,
|
|
File without changes
|