truefoundry 0.4.4rc8__py3-none-any.whl → 0.4.4rc10__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 truefoundry might be problematic. Click here for more details.
- truefoundry/common/constants.py +7 -12
- truefoundry/common/tfy_signed_url_client.py +84 -86
- truefoundry/common/tfy_signed_url_fs.py +13 -7
- truefoundry/ml/artifact/truefoundry_artifact_repo.py +433 -415
- truefoundry/ml/autogen/client/__init__.py +24 -3
- truefoundry/ml/autogen/client/api/experiments_api.py +0 -137
- truefoundry/ml/autogen/client/api/mlfoundry_artifacts_api.py +2 -0
- truefoundry/ml/autogen/client/models/__init__.py +24 -3
- truefoundry/ml/autogen/client/models/artifact_dto.py +9 -0
- truefoundry/ml/autogen/client/models/artifact_version_dto.py +26 -0
- truefoundry/ml/autogen/client/models/artifact_version_serialization_format.py +34 -0
- truefoundry/ml/autogen/client/models/create_artifact_version_response_dto.py +8 -2
- truefoundry/ml/autogen/client/models/create_run_request_dto.py +1 -10
- truefoundry/ml/autogen/client/models/dataset_dto.py +9 -0
- truefoundry/ml/autogen/client/models/experiment_dto.py +14 -3
- truefoundry/ml/autogen/client/models/external_model_source.py +79 -0
- truefoundry/ml/autogen/client/models/finalize_artifact_version_request_dto.py +11 -0
- truefoundry/ml/autogen/client/models/framework.py +154 -0
- truefoundry/ml/autogen/client/models/library_name.py +35 -0
- truefoundry/ml/autogen/client/models/model_dto.py +9 -0
- truefoundry/ml/autogen/client/models/model_version_dto.py +26 -0
- truefoundry/ml/autogen/client/models/model_version_manifest.py +119 -0
- truefoundry/ml/autogen/client/models/run_info_dto.py +10 -1
- truefoundry/ml/autogen/client/models/source.py +177 -0
- truefoundry/ml/autogen/client/models/subject.py +79 -0
- truefoundry/ml/autogen/client/models/subject_type.py +34 -0
- truefoundry/ml/autogen/client/models/tensorflow_framework.py +74 -0
- truefoundry/ml/autogen/client/models/transformers_framework.py +90 -0
- truefoundry/ml/autogen/client/models/truefoundry_model_source.py +79 -0
- truefoundry/ml/autogen/client/models/update_model_version_request_dto.py +11 -0
- truefoundry/ml/autogen/client/models/upload_model_source.py +74 -0
- truefoundry/ml/autogen/client_README.md +12 -2
- truefoundry/ml/autogen/entities/artifacts.py +236 -4
- truefoundry/ml/log_types/artifacts/artifact.py +10 -6
- truefoundry/ml/log_types/artifacts/dataset.py +13 -5
- truefoundry/ml/log_types/artifacts/general_artifact.py +3 -1
- truefoundry/ml/log_types/artifacts/model.py +18 -30
- truefoundry/ml/log_types/artifacts/utils.py +42 -25
- truefoundry/ml/log_types/image/image.py +2 -0
- truefoundry/ml/log_types/plot.py +2 -0
- truefoundry/ml/mlfoundry_api.py +0 -1
- truefoundry/workflow/__init__.py +8 -3
- {truefoundry-0.4.4rc8.dist-info → truefoundry-0.4.4rc10.dist-info}/METADATA +1 -1
- {truefoundry-0.4.4rc8.dist-info → truefoundry-0.4.4rc10.dist-info}/RECORD +46 -35
- truefoundry/ml/autogen/client/models/list_seed_experiments_response_dto.py +0 -81
- {truefoundry-0.4.4rc8.dist-info → truefoundry-0.4.4rc10.dist-info}/WHEEL +0 -0
- {truefoundry-0.4.4rc8.dist-info → truefoundry-0.4.4rc10.dist-info}/entry_points.txt +0 -0
|
@@ -2,8 +2,6 @@ import json
|
|
|
2
2
|
import logging
|
|
3
3
|
import os
|
|
4
4
|
import posixpath
|
|
5
|
-
import shutil
|
|
6
|
-
import tempfile
|
|
7
5
|
from pathlib import Path
|
|
8
6
|
from typing import Any, Dict, Optional, Sequence, Tuple, Union
|
|
9
7
|
|
|
@@ -13,20 +11,22 @@ from truefoundry.ml.log_types.artifacts.constants import DESCRIPTION_MAX_LENGTH
|
|
|
13
11
|
logger = logging.getLogger("truefoundry.ml")
|
|
14
12
|
|
|
15
13
|
|
|
16
|
-
def _copy_tree(
|
|
14
|
+
def _copy_tree(
|
|
15
|
+
root_dir: str, src_path: str, dest_path: str, dest_to_src: Dict[str, str]
|
|
16
|
+
):
|
|
17
17
|
os.makedirs(dest_path, exist_ok=True)
|
|
18
18
|
for item in os.listdir(src_path):
|
|
19
19
|
src = os.path.join(src_path, item)
|
|
20
20
|
dest = os.path.join(dest_path, item)
|
|
21
21
|
if os.path.isdir(src):
|
|
22
22
|
_copy_tree(
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
root_dir=root_dir,
|
|
24
|
+
src_path=src,
|
|
25
|
+
dest_path=dest,
|
|
26
|
+
dest_to_src=dest_to_src,
|
|
27
27
|
)
|
|
28
28
|
else:
|
|
29
|
-
|
|
29
|
+
dest_to_src[dest] = src
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def is_destination_path_dirlike(dest_path) -> bool:
|
|
@@ -48,9 +48,9 @@ def _copy_additional_files(
|
|
|
48
48
|
model_dir: Optional[str], # relative to files_dir e.g "model/"
|
|
49
49
|
additional_files: Sequence[Tuple[Union[str, Path], Optional[str]]],
|
|
50
50
|
ignore_model_dir_dest_conflict: bool = False,
|
|
51
|
-
|
|
51
|
+
existing_dest_to_src_map: Optional[Dict[str, str]] = None,
|
|
52
|
+
) -> Dict[str, str]:
|
|
52
53
|
"""
|
|
53
|
-
|
|
54
54
|
File copying examples:
|
|
55
55
|
# non ambiguous
|
|
56
56
|
# a.txt -> /tmp/ result /tmp/a.txt
|
|
@@ -69,6 +69,7 @@ def _copy_additional_files(
|
|
|
69
69
|
# .gitignore -> /tmp/.gitinclude result /tmp/.gitinclude
|
|
70
70
|
# a.txt -> /tmp/a result /tmp/a
|
|
71
71
|
"""
|
|
72
|
+
dest_to_src = existing_dest_to_src_map or {}
|
|
72
73
|
for src_path, dest_path in additional_files:
|
|
73
74
|
src_path = str(src_path)
|
|
74
75
|
if not os.path.exists(src_path):
|
|
@@ -99,26 +100,47 @@ def _copy_additional_files(
|
|
|
99
100
|
_src = src_path
|
|
100
101
|
if is_destination_path_dirlike(dest_abs_path):
|
|
101
102
|
os.makedirs(dest_abs_path, exist_ok=True)
|
|
102
|
-
|
|
103
|
-
os.path.join(dest_abs_path, os.path.basename(_src)), files_abs_dir
|
|
104
|
-
)
|
|
103
|
+
dest_abs_path = os.path.join(dest_abs_path, os.path.basename(_src))
|
|
105
104
|
else:
|
|
106
105
|
os.makedirs(os.path.dirname(dest_abs_path), exist_ok=True)
|
|
107
|
-
|
|
106
|
+
_dst = os.path.relpath(dest_abs_path, files_abs_dir)
|
|
108
107
|
logger.info(f"Adding file {_src} as /{_dst}")
|
|
109
|
-
|
|
108
|
+
dest_to_src[dest_abs_path] = src_path
|
|
110
109
|
elif os.path.isdir(src_path):
|
|
111
110
|
os.makedirs(dest_abs_path, exist_ok=True)
|
|
112
111
|
_src = src_path.rstrip("/")
|
|
113
112
|
_dst = os.path.relpath(dest_abs_path, files_abs_dir).rstrip("/")
|
|
114
113
|
logger.info(f"Adding contents of {_src}/ to /{_dst}/")
|
|
115
114
|
_copy_tree(
|
|
115
|
+
root_dir=root_dir,
|
|
116
116
|
src_path=src_path,
|
|
117
117
|
dest_path=dest_abs_path,
|
|
118
|
-
|
|
119
|
-
ignore_dangling_symlinks=False,
|
|
118
|
+
dest_to_src=dest_to_src,
|
|
120
119
|
)
|
|
121
120
|
|
|
121
|
+
return dest_to_src
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
def _make_dest_to_src_map_from_dir(root_dir: str) -> Dict[str, str]:
|
|
125
|
+
dest_to_src_map = {}
|
|
126
|
+
for root, _, files in os.walk(root_dir):
|
|
127
|
+
for file in files:
|
|
128
|
+
src = os.path.join(root, file)
|
|
129
|
+
dest = src
|
|
130
|
+
dest_to_src_map[dest] = src
|
|
131
|
+
return dest_to_src_map
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
def _get_src_dest_pairs(
|
|
135
|
+
root_dir: str,
|
|
136
|
+
dest_to_src_map: Dict[str, str],
|
|
137
|
+
) -> Sequence[Tuple[str, str]]:
|
|
138
|
+
src_dest_pairs = [
|
|
139
|
+
(src_path, os.path.relpath(dest_abs_path, root_dir))
|
|
140
|
+
for dest_abs_path, src_path in dest_to_src_map.items()
|
|
141
|
+
]
|
|
142
|
+
return src_dest_pairs
|
|
143
|
+
|
|
122
144
|
|
|
123
145
|
def _validate_description(description: Optional[str]):
|
|
124
146
|
if description is not None:
|
|
@@ -141,8 +163,8 @@ def _validate_artifact_metadata(metadata: Dict[str, Any]):
|
|
|
141
163
|
raise MlFoundryException("`metadata` must be json serializable dict") from ve
|
|
142
164
|
|
|
143
165
|
|
|
144
|
-
def
|
|
145
|
-
|
|
166
|
+
def calculate_total_size(
|
|
167
|
+
paths: Sequence[str],
|
|
146
168
|
):
|
|
147
169
|
"""
|
|
148
170
|
Tells about the size of the artifact
|
|
@@ -153,9 +175,4 @@ def calculate_local_directory_size(
|
|
|
153
175
|
Returns:
|
|
154
176
|
total size of the artifact
|
|
155
177
|
"""
|
|
156
|
-
|
|
157
|
-
for path, _dirs, files in os.walk(directory.name):
|
|
158
|
-
for f in files:
|
|
159
|
-
file_path = os.path.join(path, f)
|
|
160
|
-
total_size += os.stat(file_path).st_size
|
|
161
|
-
return total_size
|
|
178
|
+
return sum(os.stat(os.path.realpath(file_path)).st_size for file_path in paths)
|
|
@@ -18,6 +18,7 @@ from truefoundry.ml.log_types.artifacts.constants import (
|
|
|
18
18
|
FILES_DIR,
|
|
19
19
|
INTERNAL_METADATA_PATH,
|
|
20
20
|
)
|
|
21
|
+
from truefoundry.ml.log_types.artifacts.utils import _make_dest_to_src_map_from_dir
|
|
21
22
|
from truefoundry.ml.log_types.image.constants import (
|
|
22
23
|
DEFAULT_IMAGE_FORMAT,
|
|
23
24
|
IMAGE_KEY_REGEX,
|
|
@@ -344,6 +345,7 @@ class Image:
|
|
|
344
345
|
name=key,
|
|
345
346
|
artifact_type=ArtifactType.IMAGE,
|
|
346
347
|
artifact_dir=temp_dir,
|
|
348
|
+
dest_to_src_map=_make_dest_to_src_map_from_dir(root_dir=temp_dir.name),
|
|
347
349
|
internal_metadata=internal_metadata,
|
|
348
350
|
step=step,
|
|
349
351
|
)
|
truefoundry/ml/log_types/plot.py
CHANGED
|
@@ -18,6 +18,7 @@ from truefoundry.ml.log_types.artifacts.constants import (
|
|
|
18
18
|
FILES_DIR,
|
|
19
19
|
INTERNAL_METADATA_PATH,
|
|
20
20
|
)
|
|
21
|
+
from truefoundry.ml.log_types.artifacts.utils import _make_dest_to_src_map_from_dir
|
|
21
22
|
from truefoundry.ml.log_types.pydantic_base import PydanticBase
|
|
22
23
|
from truefoundry.ml.log_types.utils import validate_key_name
|
|
23
24
|
from truefoundry.pydantic_v1 import BaseModel
|
|
@@ -186,6 +187,7 @@ class Plot:
|
|
|
186
187
|
name=key,
|
|
187
188
|
artifact_type=ArtifactType.PLOT,
|
|
188
189
|
artifact_dir=temp_dir,
|
|
190
|
+
dest_to_src_map=_make_dest_to_src_map_from_dir(root_dir=temp_dir.name),
|
|
189
191
|
internal_metadata=internal_metadata,
|
|
190
192
|
step=step,
|
|
191
193
|
)
|
truefoundry/ml/mlfoundry_api.py
CHANGED
|
@@ -335,7 +335,6 @@ class MlFoundry:
|
|
|
335
335
|
tags.update(_get_internal_env_vars_values())
|
|
336
336
|
_run = self._runs_api.create_run_post(
|
|
337
337
|
CreateRunRequestDto(
|
|
338
|
-
user_id="unknown", # This does not matter, because on server we use the id from token
|
|
339
338
|
start_time=int(
|
|
340
339
|
time.time() * 1000
|
|
341
340
|
), # TODO (chiragjn): computing start time should be on server side!
|
truefoundry/workflow/__init__.py
CHANGED
|
@@ -7,6 +7,7 @@ except ImportError:
|
|
|
7
7
|
from flytekit import conditional
|
|
8
8
|
from flytekit.types.directory import FlyteDirectory
|
|
9
9
|
|
|
10
|
+
from truefoundry.common.constants import ENV_VARS
|
|
10
11
|
from truefoundry.common.tfy_signed_url_fs import SignedURLFileSystem
|
|
11
12
|
from truefoundry.deploy.v2.lib.patched_models import (
|
|
12
13
|
ContainerTaskConfig,
|
|
@@ -34,6 +35,10 @@ __all__ = [
|
|
|
34
35
|
"PythonTaskConfig",
|
|
35
36
|
"ExecutionConfig",
|
|
36
37
|
]
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
# Register the SignedURLFileSystem implementation for fsspec
|
|
41
|
+
if ENV_VARS.TFY_INTERNAL_SIGNED_URL_SERVER_HOST:
|
|
42
|
+
fsspec.register_implementation("s3", SignedURLFileSystem, clobber=True)
|
|
43
|
+
fsspec.register_implementation("gs", SignedURLFileSystem, clobber=True)
|
|
44
|
+
fsspec.register_implementation("abfs", SignedURLFileSystem, clobber=True)
|
|
@@ -27,15 +27,15 @@ truefoundry/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
27
27
|
truefoundry/cli/__main__.py,sha256=-NkhYlT3mC5MhtekueKAvCw-sWvguj0LJRpXWzvvFjc,727
|
|
28
28
|
truefoundry/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
29
|
truefoundry/common/auth_service_client.py,sha256=tZOa0NdATnItsMeTnEnUeTZQIgUJtpU-nvLdWtB4Px8,7978
|
|
30
|
-
truefoundry/common/constants.py,sha256=
|
|
30
|
+
truefoundry/common/constants.py,sha256=y8T5S-CoFKubGbSrHXq0VCgr2O3RiEbNV5KP4NDNqhk,2089
|
|
31
31
|
truefoundry/common/credential_file_manager.py,sha256=1yEk1Zm2xS4G0VDFwKSZ4w0VUrcPWQ1nJnoBaz9xyKA,4251
|
|
32
32
|
truefoundry/common/credential_provider.py,sha256=Aht7hFLsnyRgMR34dRbzln7dor0WYSeA8ej8ApNmnKM,4148
|
|
33
33
|
truefoundry/common/entities.py,sha256=8O-EGPk4PKqnyoFMKUTxISCU19rz0KBnfRDJU695DhY,3797
|
|
34
34
|
truefoundry/common/exceptions.py,sha256=ePpiQ_zmWe4e94gOgeMiyP_AZnKwjEBfyXsB5ScGYcI,329
|
|
35
35
|
truefoundry/common/request_utils.py,sha256=5xw4YGUcMf71Ncal3OfFCa-PoWDIvG3hYGCDa4Da4OI,2854
|
|
36
36
|
truefoundry/common/servicefoundry_client.py,sha256=2fxmgCM-ckFHpnm6n_mL-5Z8RWN_q-dYVvFC29bkYSg,3120
|
|
37
|
-
truefoundry/common/tfy_signed_url_client.py,sha256=
|
|
38
|
-
truefoundry/common/tfy_signed_url_fs.py,sha256=
|
|
37
|
+
truefoundry/common/tfy_signed_url_client.py,sha256=wa9pfZIUquXFE9EdHDOJXjqqU1uJr1PkvI_7vnOjZ9M,9904
|
|
38
|
+
truefoundry/common/tfy_signed_url_fs.py,sha256=Vc7Il077nZIGbDBQ8aTPNtJVcypYaoZHr13vV00REko,8486
|
|
39
39
|
truefoundry/common/utils.py,sha256=vacYbVTEvcEY4niH4C9Wb_aCeaGgh2un3_ApAt556VQ,3621
|
|
40
40
|
truefoundry/deploy/__init__.py,sha256=ugawKF2G02EmEXX35oZ2tec12d9oWN28Sf6mtGGIERY,2281
|
|
41
41
|
truefoundry/deploy/auto_gen/models.py,sha256=4MaxkG2_5Wg6avaZRlK0D4JiVEM5rk3NU0BCiTx8VyU,82477
|
|
@@ -127,16 +127,16 @@ truefoundry/langchain/utils.py,sha256=PGLDe9chZ3BuUjakexOGpIqZRFoHEgu-zJ9yKdpLLm
|
|
|
127
127
|
truefoundry/logger.py,sha256=7dLqW_Q2rEgo-_z1WZnQbGHaoy1L1MP3NqGgssaSS6o,685
|
|
128
128
|
truefoundry/ml/__init__.py,sha256=2A1l7pgqbVRt3cRW_0Lxg92hyJEkMxkCUh1EFprrmc0,942
|
|
129
129
|
truefoundry/ml/artifact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
|
-
truefoundry/ml/artifact/truefoundry_artifact_repo.py,sha256=
|
|
130
|
+
truefoundry/ml/artifact/truefoundry_artifact_repo.py,sha256=VU8i3jnY62MLfzA3rxXuUjdqLz8Yaw4zqqPWSsf0mBg,45850
|
|
131
131
|
truefoundry/ml/autogen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
132
|
-
truefoundry/ml/autogen/client/__init__.py,sha256=
|
|
132
|
+
truefoundry/ml/autogen/client/__init__.py,sha256=B6Z0oUmE-S9YqUCDRpKDuTyNWX2Fmx4es7nWx7Bhy10,17600
|
|
133
133
|
truefoundry/ml/autogen/client/api/__init__.py,sha256=3sMSljMIS3UHYeF0BcNvrPPx6VbBSRt_1IfDn-13Kyc,752
|
|
134
134
|
truefoundry/ml/autogen/client/api/auth_api.py,sha256=zpWzJhUmW6HHMY_atlUf0B25k77E1kue2hmix5I5Ih0,7017
|
|
135
135
|
truefoundry/ml/autogen/client/api/deprecated_api.py,sha256=JCQ39Y3VHdgJ1zM4XVabdTl6QpOHtQFjh04XUb6mN9A,24218
|
|
136
|
-
truefoundry/ml/autogen/client/api/experiments_api.py,sha256=
|
|
136
|
+
truefoundry/ml/autogen/client/api/experiments_api.py,sha256=mRKS8qGzcFJUpTWjfQoFYm2KI8jTHxBzA0l_foSCLM0,74880
|
|
137
137
|
truefoundry/ml/autogen/client/api/health_api.py,sha256=IAPhRAo9CLUT5ipVR1fCf-qDx57UR0wg5ekhtUl8lug,11554
|
|
138
138
|
truefoundry/ml/autogen/client/api/metrics_api.py,sha256=q3L38eD-2hu4_9YvcSdnWDYXD2V8il-X9reinOAABek,14908
|
|
139
|
-
truefoundry/ml/autogen/client/api/mlfoundry_artifacts_api.py,sha256=
|
|
139
|
+
truefoundry/ml/autogen/client/api/mlfoundry_artifacts_api.py,sha256=smLST3wBZnMw0VrTDR5y1IuJvzV6n89nLWqUMB5mavY,313547
|
|
140
140
|
truefoundry/ml/autogen/client/api/python_deployment_config_api.py,sha256=8P53aegaaZp1LEV9_GDNSCofgxRXP3Atyprc2bUvvpI,8348
|
|
141
141
|
truefoundry/ml/autogen/client/api/run_artifacts_api.py,sha256=x-vVnY2LEFChZxiiFauswRWwFz6Qqh30PKXjzuTvxmc,8799
|
|
142
142
|
truefoundry/ml/autogen/client/api/runs_api.py,sha256=-aghrZ2VYuZOw_vBtOzWDsnK7Ji29oZQxK2CLRgyo2w,119232
|
|
@@ -144,7 +144,7 @@ truefoundry/ml/autogen/client/api_client.py,sha256=8qg-WpadDuKgbRt5yABJ4wVS4IRxd
|
|
|
144
144
|
truefoundry/ml/autogen/client/api_response.py,sha256=KRyvecPMXF05PaxILHZ8JHoP4rgKBjKONMgG83aU-rM,844
|
|
145
145
|
truefoundry/ml/autogen/client/configuration.py,sha256=V1oaEnxt-NfpaNmp-EZpf2glovzVhM2coWYt8HBNB4M,15723
|
|
146
146
|
truefoundry/ml/autogen/client/exceptions.py,sha256=XbCbDHhYT3BVejdoGNPgEa4oS56ypkwFdxk1iOc_tFY,5355
|
|
147
|
-
truefoundry/ml/autogen/client/models/__init__.py,sha256=
|
|
147
|
+
truefoundry/ml/autogen/client/models/__init__.py,sha256=PNukskNa-cv5uP25VmJXrZAZygCoyPis4LkMVLRA7M4,16216
|
|
148
148
|
truefoundry/ml/autogen/client/models/add_custom_metrics_to_model_version_request_dto.py,sha256=_ISDspicTGjBCYYXubKfRYYSSQVyW3AvG-jFh47-Zfc,2163
|
|
149
149
|
truefoundry/ml/autogen/client/models/add_features_to_model_version_request_dto.py,sha256=rU0h96pEE8K1Ukw2pzDSjq0e6BgtDEuOctI-aZMrpUY,2653
|
|
150
150
|
truefoundry/ml/autogen/client/models/agent.py,sha256=fnMWdEPe5Iw50WKydtu7QAxU419j3ju1IukpChUnGqY,3871
|
|
@@ -152,11 +152,12 @@ truefoundry/ml/autogen/client/models/agent_app.py,sha256=h-0xdTMDE6FPzvksnbhVSXO
|
|
|
152
152
|
truefoundry/ml/autogen/client/models/agent_open_api_tool.py,sha256=QotUMmGqAMpNsRFwVoNJHg9OeobimS-Wc9Eb85VRD24,5023
|
|
153
153
|
truefoundry/ml/autogen/client/models/agent_open_api_tool_with_fqn.py,sha256=8iHIEpGtQJO8QZS66T0FysqKg1VaxJT44hPu_a6zuwE,5121
|
|
154
154
|
truefoundry/ml/autogen/client/models/agent_with_fqn.py,sha256=_LFRmdT0KNe1CRNBfEt9gFbBvGMiwPInbesHSKrLH-g,3976
|
|
155
|
-
truefoundry/ml/autogen/client/models/artifact_dto.py,sha256=
|
|
155
|
+
truefoundry/ml/autogen/client/models/artifact_dto.py,sha256=JWL8_sITJJXbxywcfRj4xqt8jR9pyBmA4TfwNTdX6CE,4243
|
|
156
156
|
truefoundry/ml/autogen/client/models/artifact_response_dto.py,sha256=T_HLjkHnqiO1bnSXiCUOlwDEHGz89mlUNhBq0SJTapo,2226
|
|
157
157
|
truefoundry/ml/autogen/client/models/artifact_type.py,sha256=LBXGYUoesmL5J-0xzCR8jBST3bjb6HY86RmqSGvytRs,828
|
|
158
|
-
truefoundry/ml/autogen/client/models/artifact_version_dto.py,sha256=
|
|
158
|
+
truefoundry/ml/autogen/client/models/artifact_version_dto.py,sha256=oGWsRSxLDy8aGMI9dfaaNZH9JpPnqLevWSRmMCsHo44,6233
|
|
159
159
|
truefoundry/ml/autogen/client/models/artifact_version_response_dto.py,sha256=JmiSYdPYG-ki6LCBeF7NtihdQ2LPiHld8cSPivY2GmQ,2421
|
|
160
|
+
truefoundry/ml/autogen/client/models/artifact_version_serialization_format.py,sha256=2Qfgq1nykn0_mKNEJzOxhQwHm_95WIr9wJcHLeFWXQM,774
|
|
160
161
|
truefoundry/ml/autogen/client/models/artifact_version_status.py,sha256=iIcomqhuaJkZH2rT3e6IjQutM79t9hEshW-RCIMKHEY,780
|
|
161
162
|
truefoundry/ml/autogen/client/models/assistant_message.py,sha256=rmCQ4OAbVpjbX3rXiNtv2ePxV-7kq6Eg1Bs_tm_rmNE,2845
|
|
162
163
|
truefoundry/ml/autogen/client/models/authorize_user_for_model_request_dto.py,sha256=G00T6eroxZrDw782-UBCQxlkwkxyAPfmvd9QNcMiZDI,2017
|
|
@@ -173,7 +174,7 @@ truefoundry/ml/autogen/client/models/content2_any_of_inner.py,sha256=yeGDgvaMMny
|
|
|
173
174
|
truefoundry/ml/autogen/client/models/create_artifact_request_dto.py,sha256=U9oPwVw_G_3IIQzV_OqjuL_6ytvmfUwOMAyrYi_UhRo,2217
|
|
174
175
|
truefoundry/ml/autogen/client/models/create_artifact_response_dto.py,sha256=mRRGlXQXW2d3oWv9YOqKG55GHuIpWslSzosUxaNXYXo,1849
|
|
175
176
|
truefoundry/ml/autogen/client/models/create_artifact_version_request_dto.py,sha256=DTmslB75W6Cr_ec1ddEt40VaKowaZVv2ypf7sRH3elI,2284
|
|
176
|
-
truefoundry/ml/autogen/client/models/create_artifact_version_response_dto.py,sha256=
|
|
177
|
+
truefoundry/ml/autogen/client/models/create_artifact_version_response_dto.py,sha256=rInMtdhkkWeP-3AM5tnyvTkIUIR8fCEnaexQoB4fRmM,2108
|
|
177
178
|
truefoundry/ml/autogen/client/models/create_dataset_request_dto.py,sha256=6Ke3swxo9DG-mbOZOTXosepZ6toHPmYc4GOCtahUs2A,2308
|
|
178
179
|
truefoundry/ml/autogen/client/models/create_experiment_request_dto.py,sha256=yD3u5li_ShKbX1RGomEOkSEXQPZKxqhJGYXAMZTKXDU,3013
|
|
179
180
|
truefoundry/ml/autogen/client/models/create_experiment_response_dto.py,sha256=GmN5gDzieW8xT2RXOhf0QJ5_AL7JzCSwFYJMnys1pgA,1931
|
|
@@ -183,9 +184,9 @@ truefoundry/ml/autogen/client/models/create_multi_part_upload_for_dataset_respon
|
|
|
183
184
|
truefoundry/ml/autogen/client/models/create_multi_part_upload_request_dto.py,sha256=nGrPRw5R44APVGeyegxFLxfi8KAHX-NDORtS1iBw5Xc,2213
|
|
184
185
|
truefoundry/ml/autogen/client/models/create_python_deployment_config_request_dto.py,sha256=1xmhL67Pz0Ckgfky3SIwtD0ayPJA-Vvv51Qec0LVDAA,2232
|
|
185
186
|
truefoundry/ml/autogen/client/models/create_python_deployment_config_response_dto.py,sha256=5fnCJ7ybEcRA03s8ZLGdt1w8_Xz5nt6-PPmvA6Yxt60,2051
|
|
186
|
-
truefoundry/ml/autogen/client/models/create_run_request_dto.py,sha256=
|
|
187
|
+
truefoundry/ml/autogen/client/models/create_run_request_dto.py,sha256=OqhHezsPGygl5m3BlEHmKGlCNf2t5FUFQJLwdmHfggg,2841
|
|
187
188
|
truefoundry/ml/autogen/client/models/create_run_response_dto.py,sha256=cFzIkhbiB_IEmQSx1asNAzPMN-MzCBtqWj2PJ3oTLTM,2169
|
|
188
|
-
truefoundry/ml/autogen/client/models/dataset_dto.py,sha256=
|
|
189
|
+
truefoundry/ml/autogen/client/models/dataset_dto.py,sha256=V3dIdK93YQ8mtolY8Onz2N17HQYm3bLUMn98dVg7tGo,4100
|
|
189
190
|
truefoundry/ml/autogen/client/models/dataset_response_dto.py,sha256=5h3eHpiG4Zzqn5Hm0WpZgyXGjxujKem42_8YnGq5KLo,2205
|
|
190
191
|
truefoundry/ml/autogen/client/models/delete_artifact_versions_request_dto.py,sha256=JF2dQuEe_W1c2ox9zZDER_pZSTbKwSnns8hIfG5o7oA,1905
|
|
191
192
|
truefoundry/ml/autogen/client/models/delete_dataset_request_dto.py,sha256=bfzzgBoekOBcGg2Uzzel80rf2Z5fDgggShkYd0ZlbSM,2143
|
|
@@ -193,14 +194,16 @@ truefoundry/ml/autogen/client/models/delete_files_for_dataset_request_dto.py,sha
|
|
|
193
194
|
truefoundry/ml/autogen/client/models/delete_model_version_request_dto.py,sha256=6abYuueylSgv7TLkIHq8X0NWeFr-J5k72caAyOnn6fw,1873
|
|
194
195
|
truefoundry/ml/autogen/client/models/delete_run_request.py,sha256=jXQmROKfkPA8idoxkUXT-2O6QJ4OgxgFX-CEmjryIpY,1793
|
|
195
196
|
truefoundry/ml/autogen/client/models/delete_tag_request_dto.py,sha256=eQSPMamCJbsehcwWoMxQxlzZKQfX5GEwm3KHGF2Ajts,1901
|
|
196
|
-
truefoundry/ml/autogen/client/models/experiment_dto.py,sha256=
|
|
197
|
+
truefoundry/ml/autogen/client/models/experiment_dto.py,sha256=bl4-Hp1EHl8CEKgWq6sjJEGsTYG3kWQaO-AlskslXKQ,5035
|
|
197
198
|
truefoundry/ml/autogen/client/models/experiment_id_request_dto.py,sha256=ZMH827n_UTpDI30UnkuOam-4ANBKCDgocIzI8StxFR8,1891
|
|
198
199
|
truefoundry/ml/autogen/client/models/experiment_response_dto.py,sha256=wuflV6_f8PQq061-wU2GzNY4BZi8SG8ARCIbSQN1oT4,2268
|
|
199
200
|
truefoundry/ml/autogen/client/models/experiment_tag_dto.py,sha256=nEpCkeZ9ficIDkjmmLfkJeNNokd-Rhgr-cepPWG6L3M,1902
|
|
201
|
+
truefoundry/ml/autogen/client/models/external_model_source.py,sha256=Vzn1sbjMtQYuMEVjd9hxH0TupGG7vwzqadwE4l9vzs8,2286
|
|
200
202
|
truefoundry/ml/autogen/client/models/feature_dto.py,sha256=XM7fF71P_bYP3UlO1ILjnD3DJNpf2tGwAWbrkQyvyA4,1924
|
|
201
203
|
truefoundry/ml/autogen/client/models/feature_value_type.py,sha256=3ZKxxEfrrWk8ePlV7n11wa-FdDH0SRLyHRqSvIU7F-M,732
|
|
202
204
|
truefoundry/ml/autogen/client/models/file_info_dto.py,sha256=7oc8venicsFVk8zT9wHNhHnZGtFkFlqimFnS7ozGL9k,2156
|
|
203
|
-
truefoundry/ml/autogen/client/models/finalize_artifact_version_request_dto.py,sha256=
|
|
205
|
+
truefoundry/ml/autogen/client/models/finalize_artifact_version_request_dto.py,sha256=tArvzRPp80PpfJ4CoMwwaKqPAfzonq-8C-yKBEjs9co,3877
|
|
206
|
+
truefoundry/ml/autogen/client/models/framework.py,sha256=Z_91ZrPWB22mHnKWBgbXHhY5NzHdmfTATBd2iQPNIaU,5131
|
|
204
207
|
truefoundry/ml/autogen/client/models/get_experiment_response_dto.py,sha256=FhJpoUeRbZV1s1KR3Y07Kv6U4enLbbgdpGbguT9us0A,2923
|
|
205
208
|
truefoundry/ml/autogen/client/models/get_latest_run_log_response_dto.py,sha256=g5NG252VzjGHiA-w5nhxmZxGrowJO9XCHDQTjf8y2KE,2266
|
|
206
209
|
truefoundry/ml/autogen/client/models/get_metric_history_response.py,sha256=rTchO8o4sjGsNaZj8TW-VGtGGxsOBjUGzgaAWNtBZ-k,2428
|
|
@@ -218,6 +221,7 @@ truefoundry/ml/autogen/client/models/image_content_part.py,sha256=_DXwAxeuagwRWM
|
|
|
218
221
|
truefoundry/ml/autogen/client/models/image_url.py,sha256=TN8iEdBUmtKdTFlApUodaC4o6X_Ggd3OSOKVPv7laJE,2170
|
|
219
222
|
truefoundry/ml/autogen/client/models/internal_metadata.py,sha256=6OizrIzA3QxlEnwNFXCZGOMJuUDSYHctl_30q27uBDI,6232
|
|
220
223
|
truefoundry/ml/autogen/client/models/latest_run_log_dto.py,sha256=wE8T8bANTb9u14Jv7DNyKWekZiUAvrzvTcE_H1cRhn4,2326
|
|
224
|
+
truefoundry/ml/autogen/client/models/library_name.py,sha256=JKmQMgEj6RcmSv68THAcs1gmh3P3CNrgJ_Rh5VWu9Fs,823
|
|
221
225
|
truefoundry/ml/autogen/client/models/list_artifact_versions_request_dto.py,sha256=nODOEA-tT8XEJKgUXXjvlzT5ecEwz1b9zu-l3RgQl1o,3622
|
|
222
226
|
truefoundry/ml/autogen/client/models/list_artifact_versions_response_dto.py,sha256=G560h_rGn6-X-cxpuddGU8Fp2eBKXvC3RWcJZdZQJBE,2940
|
|
223
227
|
truefoundry/ml/autogen/client/models/list_artifacts_request_dto.py,sha256=o3Jz3VsAa3aJB3YZ6NI6t8TLLoMGeg64jYYZibeo3Oc,2982
|
|
@@ -239,7 +243,6 @@ truefoundry/ml/autogen/client/models/list_models_request_dto.py,sha256=YcHYIbHPa
|
|
|
239
243
|
truefoundry/ml/autogen/client/models/list_models_response_dto.py,sha256=O2QkHGlLPtuGs7ggFuPEf5_hukS1B_Q5fMNPlPClrr4,2662
|
|
240
244
|
truefoundry/ml/autogen/client/models/list_run_artifacts_response_dto.py,sha256=gZrv8iVQZcBcS5PXhABJblvm--E8BY3chJVuCU6GNvI,2715
|
|
241
245
|
truefoundry/ml/autogen/client/models/list_run_logs_response_dto.py,sha256=ckQBBYHVyfSyFnYiczvVXTsnahKSur-2U6wsb-owpEg,2485
|
|
242
|
-
truefoundry/ml/autogen/client/models/list_seed_experiments_response_dto.py,sha256=rsbPpoAQOIOK-jFsfH2Tn30l-tGRLvx_kylN9FSI7n4,2566
|
|
243
246
|
truefoundry/ml/autogen/client/models/log_batch_request_dto.py,sha256=xDas-pmJP5T-8zKd17BbSnglZuX15ei3n9blBZUxa-Y,3702
|
|
244
247
|
truefoundry/ml/autogen/client/models/log_metric_request_dto.py,sha256=QED1aIeaZJG-8iKFxT3NX9ozlUz_wom1xDsyZgL-a-4,2442
|
|
245
248
|
truefoundry/ml/autogen/client/models/log_param_request_dto.py,sha256=Hd7AqrVnSkwfa9CcDbATERaim5Hf8rM59WZQNxSlJzk,2160
|
|
@@ -248,10 +251,11 @@ truefoundry/ml/autogen/client/models/metric_collection_dto.py,sha256=02ZWKm2_8Dj
|
|
|
248
251
|
truefoundry/ml/autogen/client/models/metric_dto.py,sha256=Xrcc8XRY0sZeg_cnb6gyf-AUUIS0FPxSGTCbDzcBzXQ,2174
|
|
249
252
|
truefoundry/ml/autogen/client/models/mime_type.py,sha256=A-N5-Mof_IyHWguXmG67k9wuaS5xwLPcj1J11jrEGyc,897
|
|
250
253
|
truefoundry/ml/autogen/client/models/model_configuration.py,sha256=XKhwqO8caQ8w9XRCdb_pAl-84cd_PWkEutjLNSby6hQ,3861
|
|
251
|
-
truefoundry/ml/autogen/client/models/model_dto.py,sha256=
|
|
254
|
+
truefoundry/ml/autogen/client/models/model_dto.py,sha256=TUO74MDqe8XCVJBB2O7TiqiRON8qbE7gi8LNA3uWjYA,4685
|
|
252
255
|
truefoundry/ml/autogen/client/models/model_response_dto.py,sha256=osrTxfygkuhxWj6SkRBALrSnFVPH4LSK6qTufTeZuJg,2163
|
|
253
256
|
truefoundry/ml/autogen/client/models/model_schema_dto.py,sha256=ElEPK7fwuf3eiohNBBHJyl-nhNqzGnDLzZVzuQl-xC0,2620
|
|
254
|
-
truefoundry/ml/autogen/client/models/model_version_dto.py,sha256=
|
|
257
|
+
truefoundry/ml/autogen/client/models/model_version_dto.py,sha256=6kI1Z2czYAieJZBaVvcV8Y2eeNEUDyjPuTLHTdyWnOE,7282
|
|
258
|
+
truefoundry/ml/autogen/client/models/model_version_manifest.py,sha256=yJN2C_ETddLAeSR4wDuzV3--F2MyiN-XzIJlNayG6Ok,3945
|
|
255
259
|
truefoundry/ml/autogen/client/models/model_version_response_dto.py,sha256=D6XOCyggxqTkbePuypqYSHYh1PYeDv7R_J32q61sDM0,2320
|
|
256
260
|
truefoundry/ml/autogen/client/models/multi_part_upload_dto.py,sha256=Ckq405vud8RQmMyKCJQJBlW5iXO7Y2mlgo8eVkiMvxg,3738
|
|
257
261
|
truefoundry/ml/autogen/client/models/multi_part_upload_response_dto.py,sha256=VjH0kvl7rMjgDHjYGHnsh7KsZ5-qn-k3ksdGLJ49nIM,2431
|
|
@@ -265,7 +269,7 @@ truefoundry/ml/autogen/client/models/resolve_agent_app_response_dto.py,sha256=sg
|
|
|
265
269
|
truefoundry/ml/autogen/client/models/restore_run_request_dto.py,sha256=7iBbil4YfaOHJwP0ifPHp-D1Kt-ZiSRjAaVuU7_idhw,1825
|
|
266
270
|
truefoundry/ml/autogen/client/models/run_data_dto.py,sha256=iPFm5f4x2ymRqea6EDZlcjWYN_-f3t9JZckwskXSTKY,3533
|
|
267
271
|
truefoundry/ml/autogen/client/models/run_dto.py,sha256=inAYRSKnHSkF3cdf2eQYp5wVnOgB47ZPdavxCHXh9zY,2535
|
|
268
|
-
truefoundry/ml/autogen/client/models/run_info_dto.py,sha256=
|
|
272
|
+
truefoundry/ml/autogen/client/models/run_info_dto.py,sha256=RCGhFUG5kSIcU62LrqXMqh4ediFyeBziV-Z2532Wcmo,3617
|
|
269
273
|
truefoundry/ml/autogen/client/models/run_log_dto.py,sha256=VEIXYILD4AW0QAmokyzS9mo4JmiAV7NgU5TRgymQMek,2529
|
|
270
274
|
truefoundry/ml/autogen/client/models/run_log_input_dto.py,sha256=xQ854-3vcocDzcNYejYVlo2BmEpDLlHh1MbiP2OHen4,2390
|
|
271
275
|
truefoundry/ml/autogen/client/models/run_response_dto.py,sha256=iayBnhwmByVC3iiw_ZUbB_V6FTadEQu9_U2JOs5kvkw,2121
|
|
@@ -275,24 +279,31 @@ truefoundry/ml/autogen/client/models/search_runs_response_dto.py,sha256=u0l11v7p
|
|
|
275
279
|
truefoundry/ml/autogen/client/models/set_experiment_tag_request_dto.py,sha256=nrmi_NxLD1fI2gwlpdqFSMnBS11gRkjS4_GQFHgBcXs,2118
|
|
276
280
|
truefoundry/ml/autogen/client/models/set_tag_request_dto.py,sha256=IRgAdMcWBxmjNV6nZJej4pcNfLmZwrelEZ3otwt7eeE,2144
|
|
277
281
|
truefoundry/ml/autogen/client/models/signed_url_dto.py,sha256=9oHoXBj07xTdc04rqOqJO3eOjQWXCyWPhfHg-6qX60w,1897
|
|
282
|
+
truefoundry/ml/autogen/client/models/source.py,sha256=OqcgjSiQwji_jpfcL29HKlAebURPChuQPqmQzd7CSPk,5961
|
|
278
283
|
truefoundry/ml/autogen/client/models/stop.py,sha256=UlAjRWI6Gjc92D2UME6qRAIfd6GoDI3VBWYkJqgixmU,4760
|
|
279
284
|
truefoundry/ml/autogen/client/models/store_run_logs_request_dto.py,sha256=Cfm95a9T4fDiARBJ9vd3n9Pv7QI69TSVKWi0AG_cmvs,2591
|
|
285
|
+
truefoundry/ml/autogen/client/models/subject.py,sha256=gG1pRl6lPEI1_td2sb752vJeKMKgLWDaoFwepnS4zIQ,2415
|
|
286
|
+
truefoundry/ml/autogen/client/models/subject_type.py,sha256=TOhgDmWSy67NjBCTSbwtF2-cBBB2-FoLJVFDVpJRrsQ,710
|
|
280
287
|
truefoundry/ml/autogen/client/models/system_message.py,sha256=yxRCJPl36FGv2zrsuHbLown88wmnrIpWlKEVRf9WgFQ,2801
|
|
288
|
+
truefoundry/ml/autogen/client/models/tensorflow_framework.py,sha256=8F0CHJj_J0V57GePBuMjSSLmCRuwIot10ghywlBFIeQ,2251
|
|
281
289
|
truefoundry/ml/autogen/client/models/text.py,sha256=HAIK-w_TxB1kXGvVNK1d2cweoQi-GJ9d-0QSZl21u68,4862
|
|
282
290
|
truefoundry/ml/autogen/client/models/text_content_part.py,sha256=fRQu22tiV3rDKmTgVZSLHX-cMcha3q53W8qWNCk5wmU,2492
|
|
291
|
+
truefoundry/ml/autogen/client/models/transformers_framework.py,sha256=5n4h3IvcCRr4Dca9Sv1EGUp07rEgv3c41U47NmGTsu0,2916
|
|
292
|
+
truefoundry/ml/autogen/client/models/truefoundry_model_source.py,sha256=kKxDCkLKTLho2SkVO0df6DoD8czwKbaacbjNRqBMhgY,2396
|
|
283
293
|
truefoundry/ml/autogen/client/models/update_artifact_version_request_dto.py,sha256=AhXj2afmrKskBi5uMT0-mSywZyz3g17lFE3uMRQ5pEM,2246
|
|
284
294
|
truefoundry/ml/autogen/client/models/update_dataset_request_dto.py,sha256=MF-rjJGUP6sDZVH3xP4Q8AEC9CV2PXEO9cXrR6yK57A,2182
|
|
285
295
|
truefoundry/ml/autogen/client/models/update_experiment_request_dto.py,sha256=QE_kZzTDdiXKtQ2U-zbI_gb5vxS5Yv9YupYvD22RkFs,2198
|
|
286
|
-
truefoundry/ml/autogen/client/models/update_model_version_request_dto.py,sha256=
|
|
296
|
+
truefoundry/ml/autogen/client/models/update_model_version_request_dto.py,sha256=0xWqHHflnpO8FyT79psPiPBIGW6Aiovs-b6H7sjMSDQ,3589
|
|
287
297
|
truefoundry/ml/autogen/client/models/update_run_request_dto.py,sha256=fn4VB4Zlllr6Bt_l3aYkkHxAkU9w7vtcqu4iw8BvQWY,2318
|
|
288
298
|
truefoundry/ml/autogen/client/models/update_run_response_dto.py,sha256=wolIFiihGZCBBkuj7mJEYCmGAOqDLFo_bNLcH4LeXSo,2231
|
|
299
|
+
truefoundry/ml/autogen/client/models/upload_model_source.py,sha256=zn2AigQc8uhJiGXdE57X-K4pLPrIK9TuD8g7zNt09-U,2103
|
|
289
300
|
truefoundry/ml/autogen/client/models/url.py,sha256=zMyOmdVkp1ANnQnc9GrHt42xlVwES7FTjrpOp_OtHqo,4953
|
|
290
301
|
truefoundry/ml/autogen/client/models/user_message.py,sha256=6QOmKT_SDfAVZA8V3Bzofm7_c-Qznn4KsE12NmHG4FM,2783
|
|
291
302
|
truefoundry/ml/autogen/client/models/validation_error.py,sha256=mFjwoc8g2-Usu1HXZhOQKQ4TGvLy4lwCzk8dHrJ69aA,2597
|
|
292
303
|
truefoundry/ml/autogen/client/models/validation_error_loc_inner.py,sha256=nThJ5Gmy8W2Wok-ZOI4sK7uRe1BAkLS0qzq-XZbq8zs,4915
|
|
293
304
|
truefoundry/ml/autogen/client/rest.py,sha256=9goba8qHjQuVx5O_yRaTKu7PvBnb7r7swfy3dwuTEgk,14281
|
|
294
|
-
truefoundry/ml/autogen/client_README.md,sha256=
|
|
295
|
-
truefoundry/ml/autogen/entities/artifacts.py,sha256=
|
|
305
|
+
truefoundry/ml/autogen/client_README.md,sha256=ehPzJCsvWR_ghMgIcP-UXMG4AgqcJI6cbpuz1rcsqME,33871
|
|
306
|
+
truefoundry/ml/autogen/entities/artifacts.py,sha256=yXLrEsX28aCxpgRA8x8YM5M55LLlLiWoJqEWRAZu6_Y,16147
|
|
296
307
|
truefoundry/ml/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
297
308
|
truefoundry/ml/cli/cli.py,sha256=ckBcjUpqfhgrPE1okqT_G2iouOLt-0KjpLhHp2YdVFU,256
|
|
298
309
|
truefoundry/ml/cli/commands/__init__.py,sha256=diDUiRUX4l6TtNLI4iF-ZblczkELM7FRViJ-8gGNJQY,82
|
|
@@ -308,30 +319,30 @@ truefoundry/ml/exceptions.py,sha256=8aJm2NYtAWWsRLu4MbzaoOqHsQZ6RjOFwBWQWqb6qrc,
|
|
|
308
319
|
truefoundry/ml/git_info.py,sha256=jvAVm9ilqivnGq8qJdUvYdd8Siv0PLtqurB-PXsS5ho,2023
|
|
309
320
|
truefoundry/ml/internal_namespace.py,sha256=QcqMHp6-C2im2H_02hlhi01EIcr1HhNaZprszs13EMU,1790
|
|
310
321
|
truefoundry/ml/log_types/__init__.py,sha256=g4u4D4Jaj0aBK5GtrLV88-qThKZR9pSZ17vFEkN-LmM,125
|
|
311
|
-
truefoundry/ml/log_types/artifacts/artifact.py,sha256=
|
|
322
|
+
truefoundry/ml/log_types/artifacts/artifact.py,sha256=n2EwAupOigDcUXQQFIIESRqp7zipLZieec0vLQ2DVRQ,17593
|
|
312
323
|
truefoundry/ml/log_types/artifacts/constants.py,sha256=qKxQ5mMvJE4j83BvGW3qNTKunxCiBg_EEjTdgbgJtyE,1036
|
|
313
|
-
truefoundry/ml/log_types/artifacts/dataset.py,sha256=
|
|
314
|
-
truefoundry/ml/log_types/artifacts/general_artifact.py,sha256=
|
|
315
|
-
truefoundry/ml/log_types/artifacts/model.py,sha256=
|
|
324
|
+
truefoundry/ml/log_types/artifacts/dataset.py,sha256=a4dxd2EN8p7Ci-cLGGiDOboN3t0395_XhWE1dmTw1Q4,13112
|
|
325
|
+
truefoundry/ml/log_types/artifacts/general_artifact.py,sha256=_EOlNGMg2PFjlevlD6LEOsaQBBwRWs60PkzJases6tE,3927
|
|
326
|
+
truefoundry/ml/log_types/artifacts/model.py,sha256=cuVvBhCaOy165LxyF3NuY7UH61tgYOqFiVUde4WzMwg,21920
|
|
316
327
|
truefoundry/ml/log_types/artifacts/model_extras.py,sha256=TIE73bLKfwIVzNiVcjmaZ841A70BHBwu4XAM6ZAQRFI,1045
|
|
317
|
-
truefoundry/ml/log_types/artifacts/utils.py,sha256=
|
|
328
|
+
truefoundry/ml/log_types/artifacts/utils.py,sha256=TZwa-Nu10lrNfiQZTh2AkudI9zLZnMxIpPUDMZtylsk,6307
|
|
318
329
|
truefoundry/ml/log_types/image/__init__.py,sha256=fcOq8yQnNj1rkLcPeIjLXBpdA1WIeiPsXOlAAvMxx7M,76
|
|
319
330
|
truefoundry/ml/log_types/image/constants.py,sha256=wLtGEOA4T5fZHSlOXPuNDLX3lpbCtwlvGKPFk_1fah0,255
|
|
320
|
-
truefoundry/ml/log_types/image/image.py,sha256=
|
|
331
|
+
truefoundry/ml/log_types/image/image.py,sha256=qQnAVgErAq4Jn6wXFFpaveOd52zcjUuomUCqNRxO2io,12478
|
|
321
332
|
truefoundry/ml/log_types/image/image_normalizer.py,sha256=vrzfuSpVGgIxw_Q2sbFe7kQ_JpAndX0bMwC7wtfi41g,3104
|
|
322
333
|
truefoundry/ml/log_types/image/types.py,sha256=inFQlyAyDvZtfliFpENirNCm1XO9beyZ8DNn97DoDKs,1568
|
|
323
|
-
truefoundry/ml/log_types/plot.py,sha256=
|
|
334
|
+
truefoundry/ml/log_types/plot.py,sha256=HuYvvRA5r8V0xAIuuqMME2IHb9d3SfGHUiuEkOP3Uks,7515
|
|
324
335
|
truefoundry/ml/log_types/pydantic_base.py,sha256=eBlw_AEyAz4iJKDP4zgJOCFWcldwQqpf7FADW1jzIQY,272
|
|
325
336
|
truefoundry/ml/log_types/utils.py,sha256=xjJ21jdPScvFmw3TbVh5NCzbzJwaqiXJyiiT4xxX1EI,335
|
|
326
337
|
truefoundry/ml/logger.py,sha256=VT-BF3BnBYTWVq87O58F0c8uXMu94gYzsiFlGY3_7Ao,458
|
|
327
|
-
truefoundry/ml/mlfoundry_api.py,sha256=
|
|
338
|
+
truefoundry/ml/mlfoundry_api.py,sha256=lVsD7WBqAZMNSEauKeiF1jCg_Fnt6IFEPRr4mwn1IMU,60820
|
|
328
339
|
truefoundry/ml/mlfoundry_run.py,sha256=rNJl130iJkpjW3MNoe5-d_J9VJJQBqWHEJCfYeiZCbE,45123
|
|
329
340
|
truefoundry/ml/run_utils.py,sha256=0W208wSLUrbdfk2pjNcZlkUi9bNxG2JORqoe-5rVqHI,2423
|
|
330
341
|
truefoundry/ml/session.py,sha256=F83GTC5WwGBjnJ69Ct8MqMnlutYc56JCc6YhEY1Wl-A,5394
|
|
331
342
|
truefoundry/ml/validation_utils.py,sha256=XBSUd9OoyriWJpT3M5LKz17iWY3yVMr3hM5vdaVjtf0,12082
|
|
332
343
|
truefoundry/pydantic_v1.py,sha256=jSuhGtz0Mbk1qYu8jJ1AcnIDK4oxUsdhALc4spqstmM,345
|
|
333
344
|
truefoundry/version.py,sha256=bqiT4Q-VWrTC6P4qfK43mez-Ppf-smWfrl6DcwV7mrw,137
|
|
334
|
-
truefoundry/workflow/__init__.py,sha256=
|
|
345
|
+
truefoundry/workflow/__init__.py,sha256=c4daVkQE269b69lZRiRrRn4abAfIhVDN_4Na5MsFfmk,1414
|
|
335
346
|
truefoundry/workflow/container_task.py,sha256=8arieePsX4__OnG337hOtCiNgJwtKJJCsZcmFmCBJtk,402
|
|
336
347
|
truefoundry/workflow/example/deploy.sh,sha256=wfbPRrCi04WYRqCf4g-Xo12uWbcqPD6G_Tz0lV0jU_U,60
|
|
337
348
|
truefoundry/workflow/example/hello_world_package/workflow.py,sha256=IkRKfPY5BcvLPo_PVuNbZKK9PPJ93LRkzb1a3RKQYOw,435
|
|
@@ -342,7 +353,7 @@ truefoundry/workflow/map_task.py,sha256=2m3qGXQ90k9LdS45q8dqCCECc3qr8t2m_LMCVd1m
|
|
|
342
353
|
truefoundry/workflow/python_task.py,sha256=SRXRLC4vdBqGjhkwuaY39LEWN6iPCpJAuW17URRdWTY,1128
|
|
343
354
|
truefoundry/workflow/task.py,sha256=ToitYiKcNzFCtOVQwz1W8sRjbR97eVS7vQBdbgUQtKg,1779
|
|
344
355
|
truefoundry/workflow/workflow.py,sha256=WaTqUjhwfAXDWu4E5ehuwAxrCbDJkoAf1oWmR2E9Qy0,4575
|
|
345
|
-
truefoundry-0.4.
|
|
346
|
-
truefoundry-0.4.
|
|
347
|
-
truefoundry-0.4.
|
|
348
|
-
truefoundry-0.4.
|
|
356
|
+
truefoundry-0.4.4rc10.dist-info/METADATA,sha256=S9m9mBKH3ow88eMA7hHPOgGYw7AJjfvn4fIZDK-m8cg,3102
|
|
357
|
+
truefoundry-0.4.4rc10.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
358
|
+
truefoundry-0.4.4rc10.dist-info/entry_points.txt,sha256=TXvUxQkI6zmqJuycPsyxEIMr3oqfDjgrWj0m_9X12x4,95
|
|
359
|
+
truefoundry-0.4.4rc10.dist-info/RECORD,,
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
"""
|
|
4
|
-
FastAPI
|
|
5
|
-
|
|
6
|
-
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
-
|
|
8
|
-
The version of the OpenAPI document: 0.1.0
|
|
9
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
-
|
|
11
|
-
Do not edit the class manually.
|
|
12
|
-
""" # noqa: E501
|
|
13
|
-
|
|
14
|
-
from __future__ import annotations
|
|
15
|
-
|
|
16
|
-
import json
|
|
17
|
-
import pprint
|
|
18
|
-
import re # noqa: F401
|
|
19
|
-
|
|
20
|
-
from truefoundry.ml.autogen.client.models.experiment_dto import ExperimentDto
|
|
21
|
-
from truefoundry.pydantic_v1 import BaseModel, Field, conlist
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
class ListSeedExperimentsResponseDto(BaseModel):
|
|
25
|
-
"""
|
|
26
|
-
ListSeedExperimentsResponseDto
|
|
27
|
-
"""
|
|
28
|
-
|
|
29
|
-
experiments: conlist(ExperimentDto) = Field(...)
|
|
30
|
-
__properties = ["experiments"]
|
|
31
|
-
|
|
32
|
-
class Config:
|
|
33
|
-
"""Pydantic configuration"""
|
|
34
|
-
|
|
35
|
-
allow_population_by_field_name = True
|
|
36
|
-
validate_assignment = True
|
|
37
|
-
|
|
38
|
-
def to_str(self) -> str:
|
|
39
|
-
"""Returns the string representation of the model using alias"""
|
|
40
|
-
return pprint.pformat(self.dict(by_alias=True))
|
|
41
|
-
|
|
42
|
-
def to_json(self) -> str:
|
|
43
|
-
"""Returns the JSON representation of the model using alias"""
|
|
44
|
-
return json.dumps(self.to_dict())
|
|
45
|
-
|
|
46
|
-
@classmethod
|
|
47
|
-
def from_json(cls, json_str: str) -> ListSeedExperimentsResponseDto:
|
|
48
|
-
"""Create an instance of ListSeedExperimentsResponseDto from a JSON string"""
|
|
49
|
-
return cls.from_dict(json.loads(json_str))
|
|
50
|
-
|
|
51
|
-
def to_dict(self):
|
|
52
|
-
"""Returns the dictionary representation of the model using alias"""
|
|
53
|
-
_dict = self.dict(by_alias=True, exclude={}, exclude_none=True)
|
|
54
|
-
# override the default output from truefoundry.pydantic_v1 by calling `to_dict()` of each item in experiments (list)
|
|
55
|
-
_items = []
|
|
56
|
-
if self.experiments:
|
|
57
|
-
for _item in self.experiments:
|
|
58
|
-
if _item:
|
|
59
|
-
_items.append(_item.to_dict())
|
|
60
|
-
_dict["experiments"] = _items
|
|
61
|
-
return _dict
|
|
62
|
-
|
|
63
|
-
@classmethod
|
|
64
|
-
def from_dict(cls, obj: dict) -> ListSeedExperimentsResponseDto:
|
|
65
|
-
"""Create an instance of ListSeedExperimentsResponseDto from a dict"""
|
|
66
|
-
if obj is None:
|
|
67
|
-
return None
|
|
68
|
-
|
|
69
|
-
if not isinstance(obj, dict):
|
|
70
|
-
return ListSeedExperimentsResponseDto.parse_obj(obj)
|
|
71
|
-
|
|
72
|
-
_obj = ListSeedExperimentsResponseDto.parse_obj(
|
|
73
|
-
{
|
|
74
|
-
"experiments": [
|
|
75
|
-
ExperimentDto.from_dict(_item) for _item in obj.get("experiments")
|
|
76
|
-
]
|
|
77
|
-
if obj.get("experiments") is not None
|
|
78
|
-
else None
|
|
79
|
-
}
|
|
80
|
-
)
|
|
81
|
-
return _obj
|
|
File without changes
|
|
File without changes
|