truefoundry 0.5.0rc5__py3-none-any.whl → 0.5.0rc7__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/ml/__init__.py +2 -1
- truefoundry/ml/artifact/truefoundry_artifact_repo.py +8 -3
- truefoundry/ml/autogen/client/__init__.py +6 -4
- truefoundry/ml/autogen/client/api/deprecated_api.py +340 -7
- truefoundry/ml/autogen/client/api/mlfoundry_artifacts_api.py +0 -322
- truefoundry/ml/autogen/client/api_client.py +8 -1
- truefoundry/ml/autogen/client/models/__init__.py +6 -4
- truefoundry/ml/autogen/client/models/add_features_to_model_version_request_dto.py +3 -17
- truefoundry/ml/autogen/client/models/agent.py +1 -1
- truefoundry/ml/autogen/client/models/agent_app.py +1 -1
- truefoundry/ml/autogen/client/models/agent_open_api_tool.py +1 -1
- truefoundry/ml/autogen/client/models/agent_open_api_tool_with_fqn.py +1 -1
- truefoundry/ml/autogen/client/models/agent_with_fqn.py +1 -1
- truefoundry/ml/autogen/client/models/artifact_version_manifest.py +1 -1
- truefoundry/ml/autogen/client/models/assistant_message.py +1 -1
- truefoundry/ml/autogen/client/models/blob_storage_reference.py +1 -1
- truefoundry/ml/autogen/client/models/chat_prompt.py +1 -1
- truefoundry/ml/autogen/client/models/external_artifact_source.py +1 -1
- truefoundry/ml/autogen/client/models/fast_ai_framework.py +1 -1
- truefoundry/ml/autogen/client/models/gluon_framework.py +1 -1
- truefoundry/ml/autogen/client/models/h2_o_framework.py +1 -1
- truefoundry/ml/autogen/client/models/image_content_part.py +1 -1
- truefoundry/ml/autogen/client/models/keras_framework.py +1 -1
- truefoundry/ml/autogen/client/models/light_gbm_framework.py +1 -1
- truefoundry/ml/autogen/client/models/model_version_dto.py +7 -8
- truefoundry/ml/autogen/client/models/model_version_environment.py +97 -0
- truefoundry/ml/autogen/client/models/model_version_manifest.py +12 -1
- truefoundry/ml/autogen/client/models/onnx_framework.py +1 -1
- truefoundry/ml/autogen/client/models/paddle_framework.py +1 -1
- truefoundry/ml/autogen/client/models/py_torch_framework.py +1 -1
- truefoundry/ml/autogen/client/models/{feature_value_type.py → serialization_format.py} +8 -8
- truefoundry/ml/autogen/client/models/sklearn_framework.py +16 -3
- truefoundry/ml/autogen/client/models/spa_cy_framework.py +1 -1
- truefoundry/ml/autogen/client/models/stats_models_framework.py +1 -1
- truefoundry/ml/autogen/client/models/system_message.py +1 -1
- truefoundry/ml/autogen/client/models/tensor_flow_framework.py +1 -1
- truefoundry/ml/autogen/client/models/text_content_part.py +1 -1
- truefoundry/ml/autogen/client/models/transformers_framework.py +1 -1
- truefoundry/ml/autogen/client/models/true_foundry_artifact_source.py +1 -1
- truefoundry/ml/autogen/client/models/update_model_version_request_dto.py +1 -13
- truefoundry/ml/autogen/client/models/user_message.py +1 -1
- truefoundry/ml/autogen/client/models/xg_boost_framework.py +16 -3
- truefoundry/ml/autogen/client_README.md +6 -8
- truefoundry/ml/autogen/entities/artifacts.py +38 -1
- truefoundry/ml/autogen/models/__init__.py +4 -0
- truefoundry/ml/autogen/models/exceptions.py +30 -0
- truefoundry/ml/autogen/models/schema.py +1547 -0
- truefoundry/ml/autogen/models/signature.py +139 -0
- truefoundry/ml/autogen/models/utils.py +699 -0
- truefoundry/ml/log_types/artifacts/model.py +3 -0
- truefoundry/ml/mlfoundry_api.py +3 -1
- truefoundry/ml/mlfoundry_run.py +3 -1
- {truefoundry-0.5.0rc5.dist-info → truefoundry-0.5.0rc7.dist-info}/METADATA +2 -2
- {truefoundry-0.5.0rc5.dist-info → truefoundry-0.5.0rc7.dist-info}/RECORD +56 -53
- truefoundry/ml/autogen/client/models/feature_dto.py +0 -68
- truefoundry/ml/autogen/client/models/model_schema_dto.py +0 -85
- truefoundry/ml/autogen/client/models/prediction_type.py +0 -34
- {truefoundry-0.5.0rc5.dist-info → truefoundry-0.5.0rc7.dist-info}/WHEEL +0 -0
- {truefoundry-0.5.0rc5.dist-info → truefoundry-0.5.0rc7.dist-info}/entry_points.txt +0 -0
|
@@ -25,6 +25,7 @@ from truefoundry.ml.autogen.client import ( # type: ignore[attr-defined]
|
|
|
25
25
|
MlfoundryArtifactsApi,
|
|
26
26
|
ModelDto,
|
|
27
27
|
ModelVersionDto,
|
|
28
|
+
ModelVersionEnvironment,
|
|
28
29
|
ModelVersionManifest,
|
|
29
30
|
NotifyArtifactVersionFailureDto,
|
|
30
31
|
TrueFoundryArtifactSource,
|
|
@@ -472,6 +473,7 @@ def _log_model_version( # noqa: C901
|
|
|
472
473
|
step: Optional[int] = 0,
|
|
473
474
|
progress: Optional[bool] = None,
|
|
474
475
|
framework: Optional[Union[str, ModelFramework, "ModelFrameworkType"]] = None,
|
|
476
|
+
environment: Optional[ModelVersionEnvironment] = None,
|
|
475
477
|
model_schema: Optional[Dict[str, Any]] = None,
|
|
476
478
|
) -> ModelVersion:
|
|
477
479
|
if (run and mlfoundry_artifacts_api) or (not run and not mlfoundry_artifacts_api):
|
|
@@ -585,6 +587,7 @@ def _log_model_version( # noqa: C901
|
|
|
585
587
|
metadata=metadata,
|
|
586
588
|
source=_source_cls.from_dict(source.dict()),
|
|
587
589
|
framework=Framework.from_dict(_framework.dict()) if _framework else None,
|
|
590
|
+
environment=environment,
|
|
588
591
|
step=step,
|
|
589
592
|
model_schema=model_schema,
|
|
590
593
|
)
|
truefoundry/ml/mlfoundry_api.py
CHANGED
|
@@ -18,7 +18,7 @@ import coolname
|
|
|
18
18
|
import pandas as pd
|
|
19
19
|
|
|
20
20
|
from truefoundry.common.utils import relogin_error_message
|
|
21
|
-
from truefoundry.ml import constants
|
|
21
|
+
from truefoundry.ml import ModelVersionEnvironment, constants
|
|
22
22
|
from truefoundry.ml.autogen.client import ( # type: ignore[attr-defined]
|
|
23
23
|
ArtifactDto,
|
|
24
24
|
ArtifactType,
|
|
@@ -1232,6 +1232,7 @@ class MlFoundry:
|
|
|
1232
1232
|
metadata: Optional[Dict[str, Any]] = None,
|
|
1233
1233
|
progress: Optional[bool] = None,
|
|
1234
1234
|
framework: Optional[Union[str, ModelFramework, "ModelFrameworkType"]] = None,
|
|
1235
|
+
environment: Optional[ModelVersionEnvironment] = None,
|
|
1235
1236
|
model_schema: Optional[Dict[str, Any]] = None,
|
|
1236
1237
|
) -> ModelVersion:
|
|
1237
1238
|
"""
|
|
@@ -1392,6 +1393,7 @@ class MlFoundry:
|
|
|
1392
1393
|
step=None,
|
|
1393
1394
|
progress=progress,
|
|
1394
1395
|
framework=framework,
|
|
1396
|
+
environment=environment,
|
|
1395
1397
|
model_schema=model_schema,
|
|
1396
1398
|
)
|
|
1397
1399
|
logger.info(f"Logged model successfully with fqn {model_version.fqn!r}")
|
truefoundry/ml/mlfoundry_run.py
CHANGED
|
@@ -20,7 +20,7 @@ from urllib.parse import urljoin, urlsplit
|
|
|
20
20
|
|
|
21
21
|
from truefoundry import version
|
|
22
22
|
from truefoundry.common.utils import relogin_error_message
|
|
23
|
-
from truefoundry.ml import constants
|
|
23
|
+
from truefoundry.ml import ModelVersionEnvironment, constants
|
|
24
24
|
from truefoundry.ml.autogen.client import ( # type: ignore[attr-defined]
|
|
25
25
|
ArtifactType,
|
|
26
26
|
DeleteRunRequest,
|
|
@@ -936,6 +936,7 @@ class MlFoundryRun:
|
|
|
936
936
|
step: int = 0,
|
|
937
937
|
progress: Optional[bool] = None,
|
|
938
938
|
framework: Optional[Union[str, ModelFramework, "ModelFrameworkType"]] = None,
|
|
939
|
+
environment: Optional[ModelVersionEnvironment] = None,
|
|
939
940
|
model_schema: Optional[Dict[str, Any]] = None,
|
|
940
941
|
) -> ModelVersion:
|
|
941
942
|
# TODO (chiragjn): Document mapping of framework to list of valid model save kwargs
|
|
@@ -1089,6 +1090,7 @@ class MlFoundryRun:
|
|
|
1089
1090
|
step=step,
|
|
1090
1091
|
progress=progress,
|
|
1091
1092
|
framework=framework,
|
|
1093
|
+
environment=environment,
|
|
1092
1094
|
model_schema=model_schema,
|
|
1093
1095
|
)
|
|
1094
1096
|
logger.info(f"Logged model successfully with fqn {model_version.fqn!r}")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: truefoundry
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.0rc7
|
|
4
4
|
Summary: Truefoundry CLI
|
|
5
5
|
Author: Abhishek Choudhary
|
|
6
6
|
Author-email: abhishek@truefoundry.com
|
|
@@ -37,7 +37,7 @@ Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
|
|
|
37
37
|
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
|
38
38
|
Requires-Dist: python-socketio[client] (>=5.5.2,<6.0.0)
|
|
39
39
|
Requires-Dist: questionary (>=1.10.0,<2.0.0)
|
|
40
|
-
Requires-Dist: requests (>=2.
|
|
40
|
+
Requires-Dist: requests (>=2.18.0,<3.0.0)
|
|
41
41
|
Requires-Dist: requirements-parser (>=0.11.0,<0.12.0)
|
|
42
42
|
Requires-Dist: rich (>=13.7.1,<14.0.0)
|
|
43
43
|
Requires-Dist: rich-click (>=1.2.1,<2.0.0)
|
|
@@ -123,47 +123,47 @@ truefoundry/langchain/truefoundry_embeddings.py,sha256=8nRaZ7W1ao1WF0LHk6nNel1Lu
|
|
|
123
123
|
truefoundry/langchain/truefoundry_llm.py,sha256=CJXyCgXIMbDsVRuuvEA5PKJsf6aRyVlYuG7zC4qtZXE,3802
|
|
124
124
|
truefoundry/langchain/utils.py,sha256=PGLDe9chZ3BuUjakexOGpIqZRFoHEgu-zJ9yKdpLLmM,1329
|
|
125
125
|
truefoundry/logger.py,sha256=u-YCNjg5HBwE70uQcpjIG64Ghos-K2ulTWaxC03BSj4,714
|
|
126
|
-
truefoundry/ml/__init__.py,sha256=
|
|
126
|
+
truefoundry/ml/__init__.py,sha256=6TB5Jry2jwfSs-tgl8S8Hu1EmrR8n5mQELz141SfyvQ,1882
|
|
127
127
|
truefoundry/ml/artifact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
|
-
truefoundry/ml/artifact/truefoundry_artifact_repo.py,sha256=
|
|
128
|
+
truefoundry/ml/artifact/truefoundry_artifact_repo.py,sha256=FksxhUpRHb9pgWZmAB16DhXqkAL6UIAPA1S3RJUApQU,46201
|
|
129
129
|
truefoundry/ml/autogen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
|
-
truefoundry/ml/autogen/client/__init__.py,sha256=
|
|
130
|
+
truefoundry/ml/autogen/client/__init__.py,sha256=VhsUk7ZaC935BmG5sF4F5FCIWT0wBO60Itq6TscQGzY,19100
|
|
131
131
|
truefoundry/ml/autogen/client/api/__init__.py,sha256=NyMBxBmIzB1o5LzZZwz9LiydHB3-hPqc_sevsnY6Jrw,746
|
|
132
132
|
truefoundry/ml/autogen/client/api/auth_api.py,sha256=zpWzJhUmW6HHMY_atlUf0B25k77E1kue2hmix5I5Ih0,7017
|
|
133
|
-
truefoundry/ml/autogen/client/api/deprecated_api.py,sha256=
|
|
133
|
+
truefoundry/ml/autogen/client/api/deprecated_api.py,sha256=mu5x_skNcwz8v1Tr6VP72-tVP7pmBV9muyKy_2NH3F0,38824
|
|
134
134
|
truefoundry/ml/autogen/client/api/experiments_api.py,sha256=mRKS8qGzcFJUpTWjfQoFYm2KI8jTHxBzA0l_foSCLM0,74880
|
|
135
135
|
truefoundry/ml/autogen/client/api/generate_code_snippet_api.py,sha256=C8iABP-pYIyIoTlL8PFi3ZBG_6B_dkQf09eErNeoj7A,22316
|
|
136
136
|
truefoundry/ml/autogen/client/api/health_api.py,sha256=IAPhRAo9CLUT5ipVR1fCf-qDx57UR0wg5ekhtUl8lug,11554
|
|
137
137
|
truefoundry/ml/autogen/client/api/metrics_api.py,sha256=q3L38eD-2hu4_9YvcSdnWDYXD2V8il-X9reinOAABek,14908
|
|
138
|
-
truefoundry/ml/autogen/client/api/mlfoundry_artifacts_api.py,sha256=
|
|
138
|
+
truefoundry/ml/autogen/client/api/mlfoundry_artifacts_api.py,sha256=i9uLXUCuQtiQG15bqutEcGyiE9gDeE_2cebN56iBGk0,299272
|
|
139
139
|
truefoundry/ml/autogen/client/api/run_artifacts_api.py,sha256=x-vVnY2LEFChZxiiFauswRWwFz6Qqh30PKXjzuTvxmc,8799
|
|
140
140
|
truefoundry/ml/autogen/client/api/runs_api.py,sha256=-aghrZ2VYuZOw_vBtOzWDsnK7Ji29oZQxK2CLRgyo2w,119232
|
|
141
|
-
truefoundry/ml/autogen/client/api_client.py,sha256=
|
|
141
|
+
truefoundry/ml/autogen/client/api_client.py,sha256=M31IycWorn10FYS8WbO_Whaipr0tVu2pVWFCfbS7XCo,29167
|
|
142
142
|
truefoundry/ml/autogen/client/api_response.py,sha256=KRyvecPMXF05PaxILHZ8JHoP4rgKBjKONMgG83aU-rM,844
|
|
143
143
|
truefoundry/ml/autogen/client/configuration.py,sha256=V1oaEnxt-NfpaNmp-EZpf2glovzVhM2coWYt8HBNB4M,15723
|
|
144
144
|
truefoundry/ml/autogen/client/exceptions.py,sha256=XbCbDHhYT3BVejdoGNPgEa4oS56ypkwFdxk1iOc_tFY,5355
|
|
145
|
-
truefoundry/ml/autogen/client/models/__init__.py,sha256=
|
|
145
|
+
truefoundry/ml/autogen/client/models/__init__.py,sha256=4QIxjTctvKlPt0-vQsdrsxOltRa7AwWMLj31k4kdF0o,17722
|
|
146
146
|
truefoundry/ml/autogen/client/models/add_custom_metrics_to_model_version_request_dto.py,sha256=_ISDspicTGjBCYYXubKfRYYSSQVyW3AvG-jFh47-Zfc,2163
|
|
147
|
-
truefoundry/ml/autogen/client/models/add_features_to_model_version_request_dto.py,sha256=
|
|
148
|
-
truefoundry/ml/autogen/client/models/agent.py,sha256=
|
|
149
|
-
truefoundry/ml/autogen/client/models/agent_app.py,sha256=
|
|
150
|
-
truefoundry/ml/autogen/client/models/agent_open_api_tool.py,sha256=
|
|
151
|
-
truefoundry/ml/autogen/client/models/agent_open_api_tool_with_fqn.py,sha256=
|
|
152
|
-
truefoundry/ml/autogen/client/models/agent_with_fqn.py,sha256=
|
|
147
|
+
truefoundry/ml/autogen/client/models/add_features_to_model_version_request_dto.py,sha256=OT1-98DyWNfAHz_EgD2gMX2XkrGQ4Re945fhoAl8qSE,2099
|
|
148
|
+
truefoundry/ml/autogen/client/models/agent.py,sha256=lUAbs092yo9hZmqzX6atKebDNf1uEwTf5jLvjOdvoeM,3872
|
|
149
|
+
truefoundry/ml/autogen/client/models/agent_app.py,sha256=LK13z4IZLdE63ySz4IICq0Hn_mC02ijqzA_6Bm1mK3w,3666
|
|
150
|
+
truefoundry/ml/autogen/client/models/agent_open_api_tool.py,sha256=pZaKMzo6mB1t9RGI6mbE_NiWr3wzmVwhIeIFOVCR_iY,5024
|
|
151
|
+
truefoundry/ml/autogen/client/models/agent_open_api_tool_with_fqn.py,sha256=QbRhX7bsE8w8okRS2C2q4edkQXaw61AJLt-hHvBJv5w,5122
|
|
152
|
+
truefoundry/ml/autogen/client/models/agent_with_fqn.py,sha256=zYfLximM_vq4lDaw5_DPnYgvkwIHk_VVPp-inC_6_t4,3977
|
|
153
153
|
truefoundry/ml/autogen/client/models/artifact_dto.py,sha256=JWL8_sITJJXbxywcfRj4xqt8jR9pyBmA4TfwNTdX6CE,4243
|
|
154
154
|
truefoundry/ml/autogen/client/models/artifact_response_dto.py,sha256=T_HLjkHnqiO1bnSXiCUOlwDEHGz89mlUNhBq0SJTapo,2226
|
|
155
155
|
truefoundry/ml/autogen/client/models/artifact_type.py,sha256=LBXGYUoesmL5J-0xzCR8jBST3bjb6HY86RmqSGvytRs,828
|
|
156
156
|
truefoundry/ml/autogen/client/models/artifact_version_dto.py,sha256=GXjjKycpsEgJ60V2hAfL4NMxM2gZKLP2qV2yBb9WgdM,6174
|
|
157
|
-
truefoundry/ml/autogen/client/models/artifact_version_manifest.py,sha256=
|
|
157
|
+
truefoundry/ml/autogen/client/models/artifact_version_manifest.py,sha256=EjmUxCLoN8wt-icGXAqd_q6nPwl3yBDwVqKu7kTYiLA,3532
|
|
158
158
|
truefoundry/ml/autogen/client/models/artifact_version_response_dto.py,sha256=JmiSYdPYG-ki6LCBeF7NtihdQ2LPiHld8cSPivY2GmQ,2421
|
|
159
159
|
truefoundry/ml/autogen/client/models/artifact_version_serialization_format.py,sha256=2Qfgq1nykn0_mKNEJzOxhQwHm_95WIr9wJcHLeFWXQM,774
|
|
160
160
|
truefoundry/ml/autogen/client/models/artifact_version_status.py,sha256=iIcomqhuaJkZH2rT3e6IjQutM79t9hEshW-RCIMKHEY,780
|
|
161
|
-
truefoundry/ml/autogen/client/models/assistant_message.py,sha256=
|
|
161
|
+
truefoundry/ml/autogen/client/models/assistant_message.py,sha256=m2Lj8plDuJ8QatY19oOSNE77nxr-WwPE4csBPoAIugY,2846
|
|
162
162
|
truefoundry/ml/autogen/client/models/authorize_user_for_model_request_dto.py,sha256=G00T6eroxZrDw782-UBCQxlkwkxyAPfmvd9QNcMiZDI,2017
|
|
163
163
|
truefoundry/ml/autogen/client/models/authorize_user_for_model_version_request_dto.py,sha256=Cy_7YVK47WMgweWbrSzR8-pb3B0WotriQWrKYdcxhvk,2070
|
|
164
|
-
truefoundry/ml/autogen/client/models/blob_storage_reference.py,sha256=
|
|
164
|
+
truefoundry/ml/autogen/client/models/blob_storage_reference.py,sha256=A6rATKEkYcSSShSInrJtKxwi8GsRuS3JJiq8xi9WFBc,2996
|
|
165
165
|
truefoundry/ml/autogen/client/models/body_get_search_runs_get.py,sha256=aGu5Ah2QB-fnke4joOSAnhD5aO0BFGP3dzZcvSNSe-s,2064
|
|
166
|
-
truefoundry/ml/autogen/client/models/chat_prompt.py,sha256=
|
|
166
|
+
truefoundry/ml/autogen/client/models/chat_prompt.py,sha256=Yq-DP0ur-ECcxcZH5HiKLcNdWtaTNS_WOdA1nGY3lRE,5975
|
|
167
167
|
truefoundry/ml/autogen/client/models/chat_prompt_messages_inner.py,sha256=nk4hWTl1i3IfFbXVE6cSC-z-QxW4m_YAF05wXdUYYCc,5751
|
|
168
168
|
truefoundry/ml/autogen/client/models/columns_dto.py,sha256=bjSjp-DA2YdjohahziETrfMkKNWFAjDL7XQgSUhvNJA,2070
|
|
169
169
|
truefoundry/ml/autogen/client/models/command.py,sha256=q6yFdBsXZkMFCK8DfNx1JmW8WIHY6scvfQL9NUmQWik,4790
|
|
@@ -199,10 +199,8 @@ truefoundry/ml/autogen/client/models/experiment_dto.py,sha256=bl4-Hp1EHl8CEKgWq6
|
|
|
199
199
|
truefoundry/ml/autogen/client/models/experiment_id_request_dto.py,sha256=ZMH827n_UTpDI30UnkuOam-4ANBKCDgocIzI8StxFR8,1891
|
|
200
200
|
truefoundry/ml/autogen/client/models/experiment_response_dto.py,sha256=wuflV6_f8PQq061-wU2GzNY4BZi8SG8ARCIbSQN1oT4,2268
|
|
201
201
|
truefoundry/ml/autogen/client/models/experiment_tag_dto.py,sha256=nEpCkeZ9ficIDkjmmLfkJeNNokd-Rhgr-cepPWG6L3M,1902
|
|
202
|
-
truefoundry/ml/autogen/client/models/external_artifact_source.py,sha256=
|
|
203
|
-
truefoundry/ml/autogen/client/models/fast_ai_framework.py,sha256=
|
|
204
|
-
truefoundry/ml/autogen/client/models/feature_dto.py,sha256=XM7fF71P_bYP3UlO1ILjnD3DJNpf2tGwAWbrkQyvyA4,1924
|
|
205
|
-
truefoundry/ml/autogen/client/models/feature_value_type.py,sha256=3ZKxxEfrrWk8ePlV7n11wa-FdDH0SRLyHRqSvIU7F-M,732
|
|
202
|
+
truefoundry/ml/autogen/client/models/external_artifact_source.py,sha256=h94vLz48yQg5l86V17Ve9PuwMnmkrLJxeDlX_tFOJ48,2361
|
|
203
|
+
truefoundry/ml/autogen/client/models/fast_ai_framework.py,sha256=GwVoMbIzYhr4srFXyFb565qq-_Q-7SkUsjT7zlRGz2k,2171
|
|
206
204
|
truefoundry/ml/autogen/client/models/file_info_dto.py,sha256=7oc8venicsFVk8zT9wHNhHnZGtFkFlqimFnS7ozGL9k,2156
|
|
207
205
|
truefoundry/ml/autogen/client/models/finalize_artifact_version_request_dto.py,sha256=tkPcNjI0_qhX-D3m6AXqLzdmo9_K0tFBtbPDeg0Zo7U,3818
|
|
208
206
|
truefoundry/ml/autogen/client/models/framework.py,sha256=W_KrqH1qKRvlrssCCWFIlmPaeAw0eiM6VqS3pbdlMXU,14720
|
|
@@ -218,16 +216,16 @@ truefoundry/ml/autogen/client/models/get_signed_urls_for_dataset_read_request_dt
|
|
|
218
216
|
truefoundry/ml/autogen/client/models/get_signed_urls_for_dataset_read_response_dto.py,sha256=1EQ33wOq7VpAlt7o-5XCBZ2mpn5GXKrOUfULbp4gA2g,2627
|
|
219
217
|
truefoundry/ml/autogen/client/models/get_signed_urls_for_dataset_write_response_dto.py,sha256=tRud_0Qrr4DtXD1SMSnouVlxrV6WaL5FG2mG626CFZ0,2635
|
|
220
218
|
truefoundry/ml/autogen/client/models/get_tenant_id_response_dto.py,sha256=zEG9rogifl100cOqshYDNJE-faxGF3ayRb1RNWCtaXo,2142
|
|
221
|
-
truefoundry/ml/autogen/client/models/gluon_framework.py,sha256=
|
|
222
|
-
truefoundry/ml/autogen/client/models/h2_o_framework.py,sha256=
|
|
219
|
+
truefoundry/ml/autogen/client/models/gluon_framework.py,sha256=T9ppm2DsubHcAKsKDDaeFjG88tJix6bdduLCfNpYeac,2150
|
|
220
|
+
truefoundry/ml/autogen/client/models/h2_o_framework.py,sha256=5X-0Xbt4tpecV_q6WwGqxGDvfT6Bue30XW0SiSJojXE,2126
|
|
223
221
|
truefoundry/ml/autogen/client/models/http_validation_error.py,sha256=bU-uUlz_qeFba3iHdBT7cHjLu6WZ-JmImYqgZ-kCvxM,2466
|
|
224
|
-
truefoundry/ml/autogen/client/models/image_content_part.py,sha256=
|
|
222
|
+
truefoundry/ml/autogen/client/models/image_content_part.py,sha256=m_LE5XqD_UD0f8jtWt0adRgz_FoLEvgZbCDTSYORnCc,2717
|
|
225
223
|
truefoundry/ml/autogen/client/models/image_url.py,sha256=TN8iEdBUmtKdTFlApUodaC4o6X_Ggd3OSOKVPv7laJE,2170
|
|
226
224
|
truefoundry/ml/autogen/client/models/internal_metadata.py,sha256=6OizrIzA3QxlEnwNFXCZGOMJuUDSYHctl_30q27uBDI,6232
|
|
227
|
-
truefoundry/ml/autogen/client/models/keras_framework.py,sha256=
|
|
225
|
+
truefoundry/ml/autogen/client/models/keras_framework.py,sha256=sBKDT4Dzkvr3Rf7c8YKRbtzaO_KrPNsW8tdWI_n701Q,2150
|
|
228
226
|
truefoundry/ml/autogen/client/models/latest_run_log_dto.py,sha256=wE8T8bANTb9u14Jv7DNyKWekZiUAvrzvTcE_H1cRhn4,2326
|
|
229
227
|
truefoundry/ml/autogen/client/models/library_name.py,sha256=JKmQMgEj6RcmSv68THAcs1gmh3P3CNrgJ_Rh5VWu9Fs,823
|
|
230
|
-
truefoundry/ml/autogen/client/models/light_gbm_framework.py,sha256=
|
|
228
|
+
truefoundry/ml/autogen/client/models/light_gbm_framework.py,sha256=lblWmFUORAKQr4AUynrktlxYNKDEXh2TRrERo40MROk,2195
|
|
231
229
|
truefoundry/ml/autogen/client/models/list_artifact_versions_request_dto.py,sha256=nODOEA-tT8XEJKgUXXjvlzT5ecEwz1b9zu-l3RgQl1o,3622
|
|
232
230
|
truefoundry/ml/autogen/client/models/list_artifact_versions_response_dto.py,sha256=G560h_rGn6-X-cxpuddGU8Fp2eBKXvC3RWcJZdZQJBE,2940
|
|
233
231
|
truefoundry/ml/autogen/client/models/list_artifacts_request_dto.py,sha256=o3Jz3VsAa3aJB3YZ6NI6t8TLLoMGeg64jYYZibeo3Oc,2982
|
|
@@ -260,21 +258,20 @@ truefoundry/ml/autogen/client/models/mime_type.py,sha256=A-N5-Mof_IyHWguXmG67k9w
|
|
|
260
258
|
truefoundry/ml/autogen/client/models/model_configuration.py,sha256=XKhwqO8caQ8w9XRCdb_pAl-84cd_PWkEutjLNSby6hQ,3861
|
|
261
259
|
truefoundry/ml/autogen/client/models/model_dto.py,sha256=TUO74MDqe8XCVJBB2O7TiqiRON8qbE7gi8LNA3uWjYA,4685
|
|
262
260
|
truefoundry/ml/autogen/client/models/model_response_dto.py,sha256=osrTxfygkuhxWj6SkRBALrSnFVPH4LSK6qTufTeZuJg,2163
|
|
263
|
-
truefoundry/ml/autogen/client/models/
|
|
264
|
-
truefoundry/ml/autogen/client/models/
|
|
265
|
-
truefoundry/ml/autogen/client/models/model_version_manifest.py,sha256=
|
|
261
|
+
truefoundry/ml/autogen/client/models/model_version_dto.py,sha256=9Mh4d8V33gEGYr4sys5lYYDA3bHKajR3oAZLZMAy_io,7094
|
|
262
|
+
truefoundry/ml/autogen/client/models/model_version_environment.py,sha256=WftODH_Y4JMMhsN1SpGZiLe9MynIQ35w_JUXZq0p-9w,2839
|
|
263
|
+
truefoundry/ml/autogen/client/models/model_version_manifest.py,sha256=WijypfxTNLwXnRx5yyrET7csgAo59A8dIutecJp2_pM,4818
|
|
266
264
|
truefoundry/ml/autogen/client/models/model_version_response_dto.py,sha256=D6XOCyggxqTkbePuypqYSHYh1PYeDv7R_J32q61sDM0,2320
|
|
267
265
|
truefoundry/ml/autogen/client/models/multi_part_upload_dto.py,sha256=Ckq405vud8RQmMyKCJQJBlW5iXO7Y2mlgo8eVkiMvxg,3738
|
|
268
266
|
truefoundry/ml/autogen/client/models/multi_part_upload_response_dto.py,sha256=VjH0kvl7rMjgDHjYGHnsh7KsZ5-qn-k3ksdGLJ49nIM,2431
|
|
269
267
|
truefoundry/ml/autogen/client/models/multi_part_upload_storage_provider.py,sha256=BA-a-LUi8Q8wTmrExiidRWmCQUAmAqn5qOTwgQM1K6U,796
|
|
270
268
|
truefoundry/ml/autogen/client/models/notify_artifact_version_failure_dto.py,sha256=M5PaBiH0KYigTpmg6Rm6n2nM6I9x6pLjI-oNqY4006o,1897
|
|
271
|
-
truefoundry/ml/autogen/client/models/onnx_framework.py,sha256
|
|
269
|
+
truefoundry/ml/autogen/client/models/onnx_framework.py,sha256=_YoLLcObmeODnHullwJ1D4J8tOp3k5tRr43VkSDUIrw,2138
|
|
272
270
|
truefoundry/ml/autogen/client/models/openapi_spec.py,sha256=jWD8fO4Rjx7NXg-kvJ1KEDT7ysHZcYbQ-EnEk3MxMqs,4961
|
|
273
|
-
truefoundry/ml/autogen/client/models/paddle_framework.py,sha256=
|
|
271
|
+
truefoundry/ml/autogen/client/models/paddle_framework.py,sha256=yLVdBTV2Kl_QZbCFE6u00GB-BVMsZrTeRedEGoHpEmU,2177
|
|
274
272
|
truefoundry/ml/autogen/client/models/param_dto.py,sha256=A8ysdVT16LZDB78Cd18ot2wf6emWNGKPv70IQ6wcEak,1787
|
|
275
273
|
truefoundry/ml/autogen/client/models/parameters.py,sha256=u3DF-XvyZ9w1GgEJ2WCQyYX6RXbkBw7B2yWKTFjVfP4,2736
|
|
276
|
-
truefoundry/ml/autogen/client/models/
|
|
277
|
-
truefoundry/ml/autogen/client/models/py_torch_framework.py,sha256=2sctpFx43y2C_fOh246M7KKHGlujz41KPJJWnOL4hJ0,2182
|
|
274
|
+
truefoundry/ml/autogen/client/models/py_torch_framework.py,sha256=tJXPH9m2gOccQgSK4fcWNRu0ay3r9RNvTz1eyKc-1UA,2183
|
|
278
275
|
truefoundry/ml/autogen/client/models/resolve_agent_app_response_dto.py,sha256=sggWYqC5R_BtH99xne3G_lgZYuyJjT2wozwDtvfB_Vs,2360
|
|
279
276
|
truefoundry/ml/autogen/client/models/restore_run_request_dto.py,sha256=7iBbil4YfaOHJwP0ifPHp-D1Kt-ZiSRjAaVuU7_idhw,1825
|
|
280
277
|
truefoundry/ml/autogen/client/models/run_data_dto.py,sha256=iPFm5f4x2ymRqea6EDZlcjWYN_-f3t9JZckwskXSTKY,3533
|
|
@@ -286,40 +283,46 @@ truefoundry/ml/autogen/client/models/run_response_dto.py,sha256=iayBnhwmByVC3iiw
|
|
|
286
283
|
truefoundry/ml/autogen/client/models/run_tag_dto.py,sha256=CdWwi9P-CXk1vvXWRHN2tHqRckgH-Igur1fowsS-I80,1795
|
|
287
284
|
truefoundry/ml/autogen/client/models/search_runs_request_dto.py,sha256=TxUqdYG5aKj6qdqsqNDe_ih45o0cMw3jwGu2Hrv1X48,2852
|
|
288
285
|
truefoundry/ml/autogen/client/models/search_runs_response_dto.py,sha256=u0l11v7p7zdxtaqV_RBoMtB2Zy8pJbvtMwZiL4B4qMg,2636
|
|
286
|
+
truefoundry/ml/autogen/client/models/serialization_format.py,sha256=CYq9DR1yipEGBA00XjBWyeJf_PIT8_l_F1tm6QafgRM,821
|
|
289
287
|
truefoundry/ml/autogen/client/models/set_experiment_tag_request_dto.py,sha256=nrmi_NxLD1fI2gwlpdqFSMnBS11gRkjS4_GQFHgBcXs,2118
|
|
290
288
|
truefoundry/ml/autogen/client/models/set_tag_request_dto.py,sha256=IRgAdMcWBxmjNV6nZJej4pcNfLmZwrelEZ3otwt7eeE,2144
|
|
291
289
|
truefoundry/ml/autogen/client/models/signed_url_dto.py,sha256=9oHoXBj07xTdc04rqOqJO3eOjQWXCyWPhfHg-6qX60w,1897
|
|
292
|
-
truefoundry/ml/autogen/client/models/sklearn_framework.py,sha256=
|
|
290
|
+
truefoundry/ml/autogen/client/models/sklearn_framework.py,sha256=FF3n7wHYbS9Hu_5c17G9JpKt3SetQg8V_3whYN8x9VM,2656
|
|
293
291
|
truefoundry/ml/autogen/client/models/source.py,sha256=ZG2-3oIs_M8mZNPjoIRPzhHqlm63vLCVQC9idUxQ0XU,5180
|
|
294
292
|
truefoundry/ml/autogen/client/models/source1.py,sha256=io35b9uVzqSvOHw6RlCXxM30thN-vHm1upaSiN2i0II,5183
|
|
295
|
-
truefoundry/ml/autogen/client/models/spa_cy_framework.py,sha256=
|
|
296
|
-
truefoundry/ml/autogen/client/models/stats_models_framework.py,sha256=
|
|
293
|
+
truefoundry/ml/autogen/client/models/spa_cy_framework.py,sha256=Kyrvhdalnl1uQLoPMGMry2PuFGCcQ8AGp4Cx4B9AGXQ,2150
|
|
294
|
+
truefoundry/ml/autogen/client/models/stats_models_framework.py,sha256=p6isf4NlvzL_-WO-YVNclG6i40FP890PSAKQ-VmHgA4,2231
|
|
297
295
|
truefoundry/ml/autogen/client/models/stop.py,sha256=UlAjRWI6Gjc92D2UME6qRAIfd6GoDI3VBWYkJqgixmU,4760
|
|
298
296
|
truefoundry/ml/autogen/client/models/store_run_logs_request_dto.py,sha256=Cfm95a9T4fDiARBJ9vd3n9Pv7QI69TSVKWi0AG_cmvs,2591
|
|
299
297
|
truefoundry/ml/autogen/client/models/subject.py,sha256=gG1pRl6lPEI1_td2sb752vJeKMKgLWDaoFwepnS4zIQ,2415
|
|
300
298
|
truefoundry/ml/autogen/client/models/subject_type.py,sha256=TOhgDmWSy67NjBCTSbwtF2-cBBB2-FoLJVFDVpJRrsQ,710
|
|
301
|
-
truefoundry/ml/autogen/client/models/system_message.py,sha256=
|
|
302
|
-
truefoundry/ml/autogen/client/models/tensor_flow_framework.py,sha256=
|
|
299
|
+
truefoundry/ml/autogen/client/models/system_message.py,sha256=2sPSNrDuz5elg_AG009CTe0E3HOFxAXtRKCK_Xp5CPw,2802
|
|
300
|
+
truefoundry/ml/autogen/client/models/tensor_flow_framework.py,sha256=jsAtqm2rMuiQyR7vVNDTLXDqpIPKsXEOH2WLRGE-POw,2219
|
|
303
301
|
truefoundry/ml/autogen/client/models/text.py,sha256=HAIK-w_TxB1kXGvVNK1d2cweoQi-GJ9d-0QSZl21u68,4862
|
|
304
|
-
truefoundry/ml/autogen/client/models/text_content_part.py,sha256=
|
|
305
|
-
truefoundry/ml/autogen/client/models/transformers_framework.py,sha256=
|
|
302
|
+
truefoundry/ml/autogen/client/models/text_content_part.py,sha256=IgJ5exYltwJdJUBdOxMr3VtjF6x9qbyA_4mTPDZ4QCY,2493
|
|
303
|
+
truefoundry/ml/autogen/client/models/transformers_framework.py,sha256=NNsTWMXmQyk5pCFowAIIgIs-_Iaht05RK-8-fUcQk18,3204
|
|
306
304
|
truefoundry/ml/autogen/client/models/trigger_job_run_config_request_dto.py,sha256=1HtO6zfW6Ulq8Gm_UL0YqVrse0795vZkMxgCQ0GKD9w,2864
|
|
307
305
|
truefoundry/ml/autogen/client/models/trigger_job_run_config_response_dto.py,sha256=P35xzE8MyS_HtxCcXC9fZORPX2wbf93LbCZCRggkQxw,2144
|
|
308
|
-
truefoundry/ml/autogen/client/models/true_foundry_artifact_source.py,sha256=
|
|
306
|
+
truefoundry/ml/autogen/client/models/true_foundry_artifact_source.py,sha256=LihHK1hS5sivJ6EtV1TsYU9ATYgSNDhg10Vhq6ypEG4,2457
|
|
309
307
|
truefoundry/ml/autogen/client/models/update_artifact_version_request_dto.py,sha256=nBcEe5aCIvqKz_iIeegkDKsOedSTq6-ahlC_GAwxkO4,2766
|
|
310
308
|
truefoundry/ml/autogen/client/models/update_dataset_request_dto.py,sha256=MF-rjJGUP6sDZVH3xP4Q8AEC9CV2PXEO9cXrR6yK57A,2182
|
|
311
309
|
truefoundry/ml/autogen/client/models/update_experiment_request_dto.py,sha256=QE_kZzTDdiXKtQ2U-zbI_gb5vxS5Yv9YupYvD22RkFs,2198
|
|
312
|
-
truefoundry/ml/autogen/client/models/update_model_version_request_dto.py,sha256=
|
|
310
|
+
truefoundry/ml/autogen/client/models/update_model_version_request_dto.py,sha256=GeEprpAgPvCnQe5yjmpofL7WBE0EhEHtFPIwj4jFCI4,2907
|
|
313
311
|
truefoundry/ml/autogen/client/models/update_run_request_dto.py,sha256=fn4VB4Zlllr6Bt_l3aYkkHxAkU9w7vtcqu4iw8BvQWY,2318
|
|
314
312
|
truefoundry/ml/autogen/client/models/update_run_response_dto.py,sha256=wolIFiihGZCBBkuj7mJEYCmGAOqDLFo_bNLcH4LeXSo,2231
|
|
315
313
|
truefoundry/ml/autogen/client/models/url.py,sha256=zMyOmdVkp1ANnQnc9GrHt42xlVwES7FTjrpOp_OtHqo,4953
|
|
316
|
-
truefoundry/ml/autogen/client/models/user_message.py,sha256=
|
|
314
|
+
truefoundry/ml/autogen/client/models/user_message.py,sha256=3TEM8qH_zT3dgM197bl44uV7m20IWn6sWeLGfStsN90,2784
|
|
317
315
|
truefoundry/ml/autogen/client/models/validation_error.py,sha256=mFjwoc8g2-Usu1HXZhOQKQ4TGvLy4lwCzk8dHrJ69aA,2597
|
|
318
316
|
truefoundry/ml/autogen/client/models/validation_error_loc_inner.py,sha256=nThJ5Gmy8W2Wok-ZOI4sK7uRe1BAkLS0qzq-XZbq8zs,4915
|
|
319
|
-
truefoundry/ml/autogen/client/models/xg_boost_framework.py,sha256
|
|
317
|
+
truefoundry/ml/autogen/client/models/xg_boost_framework.py,sha256=-s2xSZnCpEa7fQ4En3pOezr4w48ZRP25qcbRc75ErhQ,2651
|
|
320
318
|
truefoundry/ml/autogen/client/rest.py,sha256=9goba8qHjQuVx5O_yRaTKu7PvBnb7r7swfy3dwuTEgk,14281
|
|
321
|
-
truefoundry/ml/autogen/client_README.md,sha256=
|
|
322
|
-
truefoundry/ml/autogen/entities/artifacts.py,sha256=
|
|
319
|
+
truefoundry/ml/autogen/client_README.md,sha256=NfKhrVmoFK5NVx4WuaOv0CQAhq__BuOudDauhijKdEU,35569
|
|
320
|
+
truefoundry/ml/autogen/entities/artifacts.py,sha256=m5DXcnbPo5Z85_PxVyDiRbpDF-55k3JjgVbREFLXJDc,18445
|
|
321
|
+
truefoundry/ml/autogen/models/__init__.py,sha256=--TGRea9SQBWFfwtcl3ekb1XGfFTdEkQGSG8a2SJ60I,187
|
|
322
|
+
truefoundry/ml/autogen/models/exceptions.py,sha256=q3n7FGBrg_hUy1UyoefhMnhcXUAaqXlLIGHoOVzn_d8,1390
|
|
323
|
+
truefoundry/ml/autogen/models/schema.py,sha256=IhpO9qbygLqEamP3NIt3m90SseJXCOm1ZTqNbNbW-M0,55772
|
|
324
|
+
truefoundry/ml/autogen/models/signature.py,sha256=EppDGjws10CTatxcTBTuT-b3jJX9lmR6ZX98eC6PB5w,4942
|
|
325
|
+
truefoundry/ml/autogen/models/utils.py,sha256=Z52SnAF7UL7uluNtA_VXuB9iPju-q9bpTTFJnUh0ZTQ,24289
|
|
323
326
|
truefoundry/ml/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
327
|
truefoundry/ml/cli/cli.py,sha256=ckBcjUpqfhgrPE1okqT_G2iouOLt-0KjpLhHp2YdVFU,256
|
|
325
328
|
truefoundry/ml/cli/commands/__init__.py,sha256=diDUiRUX4l6TtNLI4iF-ZblczkELM7FRViJ-8gGNJQY,82
|
|
@@ -339,7 +342,7 @@ truefoundry/ml/log_types/artifacts/artifact.py,sha256=6X4lO23DwM7yTgUOY4RRoYMrf9
|
|
|
339
342
|
truefoundry/ml/log_types/artifacts/constants.py,sha256=qKxQ5mMvJE4j83BvGW3qNTKunxCiBg_EEjTdgbgJtyE,1036
|
|
340
343
|
truefoundry/ml/log_types/artifacts/dataset.py,sha256=a4dxd2EN8p7Ci-cLGGiDOboN3t0395_XhWE1dmTw1Q4,13112
|
|
341
344
|
truefoundry/ml/log_types/artifacts/general_artifact.py,sha256=B4XErLr-m6RmQWtxMTu3wlFRFcqSwPYp6J0OL4Ng6L0,3179
|
|
342
|
-
truefoundry/ml/log_types/artifacts/model.py,sha256=
|
|
345
|
+
truefoundry/ml/log_types/artifacts/model.py,sha256=065meIm7uu6AIxDu0WEvDu4uOWWVmFYVVXK9P3o1bJU,22632
|
|
343
346
|
truefoundry/ml/log_types/artifacts/model_extras.py,sha256=TIE73bLKfwIVzNiVcjmaZ841A70BHBwu4XAM6ZAQRFI,1045
|
|
344
347
|
truefoundry/ml/log_types/artifacts/utils.py,sha256=3FVOYlfcvZiW8vTbMe7Ft1cjNPR2GW7J69M3dyAY-qc,6299
|
|
345
348
|
truefoundry/ml/log_types/image/__init__.py,sha256=fcOq8yQnNj1rkLcPeIjLXBpdA1WIeiPsXOlAAvMxx7M,76
|
|
@@ -351,8 +354,8 @@ truefoundry/ml/log_types/plot.py,sha256=HuYvvRA5r8V0xAIuuqMME2IHb9d3SfGHUiuEkOP3
|
|
|
351
354
|
truefoundry/ml/log_types/pydantic_base.py,sha256=eBlw_AEyAz4iJKDP4zgJOCFWcldwQqpf7FADW1jzIQY,272
|
|
352
355
|
truefoundry/ml/log_types/utils.py,sha256=xjJ21jdPScvFmw3TbVh5NCzbzJwaqiXJyiiT4xxX1EI,335
|
|
353
356
|
truefoundry/ml/logger.py,sha256=VT-BF3BnBYTWVq87O58F0c8uXMu94gYzsiFlGY3_7Ao,458
|
|
354
|
-
truefoundry/ml/mlfoundry_api.py,sha256=
|
|
355
|
-
truefoundry/ml/mlfoundry_run.py,sha256=
|
|
357
|
+
truefoundry/ml/mlfoundry_api.py,sha256=cfFd4zqCDjqxCBJPvh5j1Y2yDEGtERURlWdcUT7yzgg,62236
|
|
358
|
+
truefoundry/ml/mlfoundry_run.py,sha256=wocD2nCilI7ji1t02X9Pa_wmMYmZrjgFWcyCLLO-3wc,46407
|
|
356
359
|
truefoundry/ml/model_framework.py,sha256=TosB73eEpTRlsh6v1AY_LnnW_4OoaSlzENnBXqkVRl4,4778
|
|
357
360
|
truefoundry/ml/run_utils.py,sha256=0W208wSLUrbdfk2pjNcZlkUi9bNxG2JORqoe-5rVqHI,2423
|
|
358
361
|
truefoundry/ml/session.py,sha256=F83GTC5WwGBjnJ69Ct8MqMnlutYc56JCc6YhEY1Wl-A,5394
|
|
@@ -374,7 +377,7 @@ truefoundry/workflow/remote_filesystem/tfy_signed_url_client.py,sha256=5mBCIc-ON
|
|
|
374
377
|
truefoundry/workflow/remote_filesystem/tfy_signed_url_fs.py,sha256=Hf6Dk6Fu6P7DqsK5ULgraf9DStjgigf-kjaRAMBW-RU,8680
|
|
375
378
|
truefoundry/workflow/task.py,sha256=ToitYiKcNzFCtOVQwz1W8sRjbR97eVS7vQBdbgUQtKg,1779
|
|
376
379
|
truefoundry/workflow/workflow.py,sha256=WaTqUjhwfAXDWu4E5ehuwAxrCbDJkoAf1oWmR2E9Qy0,4575
|
|
377
|
-
truefoundry-0.5.
|
|
378
|
-
truefoundry-0.5.
|
|
379
|
-
truefoundry-0.5.
|
|
380
|
-
truefoundry-0.5.
|
|
380
|
+
truefoundry-0.5.0rc7.dist-info/METADATA,sha256=I76XE-p2bTgzM7ReBUSS1yUB_gfwzi0kOTEMCDBYXAk,3102
|
|
381
|
+
truefoundry-0.5.0rc7.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
382
|
+
truefoundry-0.5.0rc7.dist-info/entry_points.txt,sha256=TXvUxQkI6zmqJuycPsyxEIMr3oqfDjgrWj0m_9X12x4,95
|
|
383
|
+
truefoundry-0.5.0rc7.dist-info/RECORD,,
|
|
@@ -1,68 +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
|
-
from typing import Optional
|
|
20
|
-
|
|
21
|
-
from truefoundry.ml.autogen.client.models.feature_value_type import FeatureValueType
|
|
22
|
-
from truefoundry.pydantic_v1 import BaseModel, StrictStr
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class FeatureDto(BaseModel):
|
|
26
|
-
"""
|
|
27
|
-
FeatureDto
|
|
28
|
-
"""
|
|
29
|
-
|
|
30
|
-
name: Optional[StrictStr] = None
|
|
31
|
-
type: Optional[FeatureValueType] = None
|
|
32
|
-
__properties = ["name", "type"]
|
|
33
|
-
|
|
34
|
-
class Config:
|
|
35
|
-
"""Pydantic configuration"""
|
|
36
|
-
|
|
37
|
-
allow_population_by_field_name = True
|
|
38
|
-
validate_assignment = True
|
|
39
|
-
|
|
40
|
-
def to_str(self) -> str:
|
|
41
|
-
"""Returns the string representation of the model using alias"""
|
|
42
|
-
return pprint.pformat(self.dict(by_alias=True))
|
|
43
|
-
|
|
44
|
-
def to_json(self) -> str:
|
|
45
|
-
"""Returns the JSON representation of the model using alias"""
|
|
46
|
-
return json.dumps(self.to_dict())
|
|
47
|
-
|
|
48
|
-
@classmethod
|
|
49
|
-
def from_json(cls, json_str: str) -> FeatureDto:
|
|
50
|
-
"""Create an instance of FeatureDto from a JSON string"""
|
|
51
|
-
return cls.from_dict(json.loads(json_str))
|
|
52
|
-
|
|
53
|
-
def to_dict(self):
|
|
54
|
-
"""Returns the dictionary representation of the model using alias"""
|
|
55
|
-
_dict = self.dict(by_alias=True, exclude={}, exclude_none=True)
|
|
56
|
-
return _dict
|
|
57
|
-
|
|
58
|
-
@classmethod
|
|
59
|
-
def from_dict(cls, obj: dict) -> FeatureDto:
|
|
60
|
-
"""Create an instance of FeatureDto from a dict"""
|
|
61
|
-
if obj is None:
|
|
62
|
-
return None
|
|
63
|
-
|
|
64
|
-
if not isinstance(obj, dict):
|
|
65
|
-
return FeatureDto.parse_obj(obj)
|
|
66
|
-
|
|
67
|
-
_obj = FeatureDto.parse_obj({"name": obj.get("name"), "type": obj.get("type")})
|
|
68
|
-
return _obj
|
|
@@ -1,85 +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
|
-
from typing import Optional
|
|
20
|
-
|
|
21
|
-
from truefoundry.ml.autogen.client.models.feature_dto import FeatureDto
|
|
22
|
-
from truefoundry.ml.autogen.client.models.prediction_type import PredictionType
|
|
23
|
-
from truefoundry.pydantic_v1 import BaseModel, conlist
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
class ModelSchemaDto(BaseModel):
|
|
27
|
-
"""
|
|
28
|
-
ModelSchemaDto
|
|
29
|
-
"""
|
|
30
|
-
|
|
31
|
-
features: Optional[conlist(FeatureDto)] = None
|
|
32
|
-
prediction: Optional[PredictionType] = None
|
|
33
|
-
__properties = ["features", "prediction"]
|
|
34
|
-
|
|
35
|
-
class Config:
|
|
36
|
-
"""Pydantic configuration"""
|
|
37
|
-
|
|
38
|
-
allow_population_by_field_name = True
|
|
39
|
-
validate_assignment = True
|
|
40
|
-
|
|
41
|
-
def to_str(self) -> str:
|
|
42
|
-
"""Returns the string representation of the model using alias"""
|
|
43
|
-
return pprint.pformat(self.dict(by_alias=True))
|
|
44
|
-
|
|
45
|
-
def to_json(self) -> str:
|
|
46
|
-
"""Returns the JSON representation of the model using alias"""
|
|
47
|
-
return json.dumps(self.to_dict())
|
|
48
|
-
|
|
49
|
-
@classmethod
|
|
50
|
-
def from_json(cls, json_str: str) -> ModelSchemaDto:
|
|
51
|
-
"""Create an instance of ModelSchemaDto from a JSON string"""
|
|
52
|
-
return cls.from_dict(json.loads(json_str))
|
|
53
|
-
|
|
54
|
-
def to_dict(self):
|
|
55
|
-
"""Returns the dictionary representation of the model using alias"""
|
|
56
|
-
_dict = self.dict(by_alias=True, exclude={}, exclude_none=True)
|
|
57
|
-
# override the default output from truefoundry.pydantic_v1 by calling `to_dict()` of each item in features (list)
|
|
58
|
-
_items = []
|
|
59
|
-
if self.features:
|
|
60
|
-
for _item in self.features:
|
|
61
|
-
if _item:
|
|
62
|
-
_items.append(_item.to_dict())
|
|
63
|
-
_dict["features"] = _items
|
|
64
|
-
return _dict
|
|
65
|
-
|
|
66
|
-
@classmethod
|
|
67
|
-
def from_dict(cls, obj: dict) -> ModelSchemaDto:
|
|
68
|
-
"""Create an instance of ModelSchemaDto from a dict"""
|
|
69
|
-
if obj is None:
|
|
70
|
-
return None
|
|
71
|
-
|
|
72
|
-
if not isinstance(obj, dict):
|
|
73
|
-
return ModelSchemaDto.parse_obj(obj)
|
|
74
|
-
|
|
75
|
-
_obj = ModelSchemaDto.parse_obj(
|
|
76
|
-
{
|
|
77
|
-
"features": [
|
|
78
|
-
FeatureDto.from_dict(_item) for _item in obj.get("features")
|
|
79
|
-
]
|
|
80
|
-
if obj.get("features") is not None
|
|
81
|
-
else None,
|
|
82
|
-
"prediction": obj.get("prediction"),
|
|
83
|
-
}
|
|
84
|
-
)
|
|
85
|
-
return _obj
|
|
@@ -1,34 +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
|
-
import json
|
|
15
|
-
import re # noqa: F401
|
|
16
|
-
|
|
17
|
-
from aenum import Enum
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
class PredictionType(str, Enum):
|
|
21
|
-
"""
|
|
22
|
-
An enumeration.
|
|
23
|
-
"""
|
|
24
|
-
|
|
25
|
-
"""
|
|
26
|
-
allowed enum values
|
|
27
|
-
"""
|
|
28
|
-
CATEGORICAL = "categorical"
|
|
29
|
-
NUMERIC = "numeric"
|
|
30
|
-
|
|
31
|
-
@classmethod
|
|
32
|
-
def from_json(cls, json_str: str) -> PredictionType:
|
|
33
|
-
"""Create an instance of PredictionType from a JSON string"""
|
|
34
|
-
return PredictionType(json.loads(json_str))
|
|
File without changes
|
|
File without changes
|