oracle-ads 2.13.3__py3-none-any.whl → 2.13.5__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.
- ads/aqua/app.py +6 -0
- ads/aqua/client/openai_client.py +305 -0
- ads/aqua/common/entities.py +224 -2
- ads/aqua/common/enums.py +3 -0
- ads/aqua/common/utils.py +105 -3
- ads/aqua/config/container_config.py +9 -0
- ads/aqua/constants.py +29 -1
- ads/aqua/evaluation/entities.py +6 -1
- ads/aqua/evaluation/evaluation.py +191 -7
- ads/aqua/extension/aqua_ws_msg_handler.py +6 -36
- ads/aqua/extension/base_handler.py +13 -71
- ads/aqua/extension/deployment_handler.py +67 -76
- ads/aqua/extension/errors.py +19 -0
- ads/aqua/extension/utils.py +114 -2
- ads/aqua/finetuning/finetuning.py +50 -1
- ads/aqua/model/constants.py +3 -0
- ads/aqua/model/enums.py +5 -0
- ads/aqua/model/model.py +236 -24
- ads/aqua/modeldeployment/deployment.py +671 -152
- ads/aqua/modeldeployment/entities.py +551 -42
- ads/aqua/modeldeployment/inference.py +4 -5
- ads/aqua/modeldeployment/utils.py +525 -0
- ads/aqua/resources/gpu_shapes_index.json +94 -0
- ads/common/utils.py +1 -17
- ads/model/datascience_model.py +81 -21
- ads/model/service/oci_datascience_model.py +50 -42
- ads/opctl/operator/lowcode/forecast/model/factory.py +8 -1
- {oracle_ads-2.13.3.dist-info → oracle_ads-2.13.5.dist-info}/METADATA +8 -4
- {oracle_ads-2.13.3.dist-info → oracle_ads-2.13.5.dist-info}/RECORD +32 -29
- {oracle_ads-2.13.3.dist-info → oracle_ads-2.13.5.dist-info}/WHEEL +1 -1
- {oracle_ads-2.13.3.dist-info → oracle_ads-2.13.5.dist-info}/entry_points.txt +0 -0
- {oracle_ads-2.13.3.dist-info → oracle_ads-2.13.5.dist-info}/licenses/LICENSE.txt +0 -0
ads/model/datascience_model.py
CHANGED
@@ -89,6 +89,11 @@ class InvalidArtifactType(Exception): # pragma: no cover
|
|
89
89
|
pass
|
90
90
|
|
91
91
|
|
92
|
+
class InvalidArtifactPathTypeOrContentError(Exception): # pragma: no cover
|
93
|
+
def __init__(self, msg="Invalid type of Metdata artifact content"):
|
94
|
+
super().__init__(msg)
|
95
|
+
|
96
|
+
|
92
97
|
class CustomerNotificationType(ExtendedEnum):
|
93
98
|
NONE = "NONE"
|
94
99
|
ALL = "ALL"
|
@@ -2238,7 +2243,7 @@ class DataScienceModel(Builder):
|
|
2238
2243
|
def create_custom_metadata_artifact(
|
2239
2244
|
self,
|
2240
2245
|
metadata_key_name: str,
|
2241
|
-
artifact_path_or_content: str,
|
2246
|
+
artifact_path_or_content: Union[str, bytes],
|
2242
2247
|
path_type: MetadataArtifactPathType = MetadataArtifactPathType.LOCAL,
|
2243
2248
|
) -> ModelMetadataArtifactDetails:
|
2244
2249
|
"""Creates model custom metadata artifact for specified model.
|
@@ -2248,13 +2253,22 @@ class DataScienceModel(Builder):
|
|
2248
2253
|
metadata_key_name: str
|
2249
2254
|
The name of the model custom metadata key
|
2250
2255
|
|
2251
|
-
artifact_path_or_content: str
|
2252
|
-
The model custom metadata artifact path to be
|
2256
|
+
artifact_path_or_content: Union[str,bytes]
|
2257
|
+
The model custom metadata artifact path to be uploaded. It can also be the actual content of the custom metadata artifact
|
2258
|
+
The type is string when it represents local path or oss path.
|
2259
|
+
The type is bytes when it represents content itself
|
2253
2260
|
|
2254
2261
|
path_type: MetadataArtifactPathType
|
2255
2262
|
Can be either of MetadataArtifactPathType.LOCAL , MetadataArtifactPathType.OSS , MetadataArtifactPathType.CONTENT
|
2256
2263
|
Specifies what type of path is to be provided for metadata artifact.
|
2257
|
-
|
2264
|
+
|
2265
|
+
Example:
|
2266
|
+
>>> ds_model=DataScienceModel.from_id("ocid1.datasciencemodel.iad.xxyxz...")
|
2267
|
+
>>> ds_model.create_custom_metadata_artifact(
|
2268
|
+
... "README",
|
2269
|
+
... artifact_path_or_content="/Users/<username>/Downloads/README.md",
|
2270
|
+
... path_type=MetadataArtifactPathType.LOCAL
|
2271
|
+
... )
|
2258
2272
|
|
2259
2273
|
Returns
|
2260
2274
|
-------
|
@@ -2273,16 +2287,23 @@ class DataScienceModel(Builder):
|
|
2273
2287
|
}
|
2274
2288
|
|
2275
2289
|
"""
|
2290
|
+
if path_type == MetadataArtifactPathType.CONTENT and not isinstance(
|
2291
|
+
artifact_path_or_content, bytes
|
2292
|
+
):
|
2293
|
+
raise InvalidArtifactPathTypeOrContentError(
|
2294
|
+
f"Invalid type of artifact content: {type(artifact_path_or_content)}. It should be bytes."
|
2295
|
+
)
|
2296
|
+
|
2276
2297
|
return self.dsc_model.create_custom_metadata_artifact(
|
2277
2298
|
metadata_key_name=metadata_key_name,
|
2278
|
-
|
2299
|
+
artifact_path_or_content=artifact_path_or_content,
|
2279
2300
|
path_type=path_type,
|
2280
2301
|
)
|
2281
2302
|
|
2282
2303
|
def create_defined_metadata_artifact(
|
2283
2304
|
self,
|
2284
2305
|
metadata_key_name: str,
|
2285
|
-
artifact_path_or_content: str,
|
2306
|
+
artifact_path_or_content: Union[str, bytes],
|
2286
2307
|
path_type: MetadataArtifactPathType = MetadataArtifactPathType.LOCAL,
|
2287
2308
|
) -> ModelMetadataArtifactDetails:
|
2288
2309
|
"""Creates model defined metadata artifact for specified model.
|
@@ -2292,14 +2313,24 @@ class DataScienceModel(Builder):
|
|
2292
2313
|
metadata_key_name: str
|
2293
2314
|
The name of the model defined metadata key
|
2294
2315
|
|
2295
|
-
artifact_path_or_content: str
|
2296
|
-
The model defined metadata artifact path to be
|
2316
|
+
artifact_path_or_content: Union[str,bytes]
|
2317
|
+
The model defined metadata artifact path to be uploaded. It can also be the actual content of the defined metadata
|
2318
|
+
The type is string when it represents local path or oss path.
|
2319
|
+
The type is bytes when it represents content itself
|
2297
2320
|
|
2298
2321
|
path_type: MetadataArtifactPathType
|
2299
2322
|
Can be either of MetadataArtifactPathType.LOCAL , MetadataArtifactPathType.OSS , MetadataArtifactPathType.CONTENT
|
2300
2323
|
Specifies what type of path is to be provided for metadata artifact.
|
2301
2324
|
Can be either local , oss or the actual content itself
|
2302
2325
|
|
2326
|
+
Example:
|
2327
|
+
>>> ds_model=DataScienceModel.from_id("ocid1.datasciencemodel.iad.xxyxz...")
|
2328
|
+
>>> ds_model.create_defined_metadata_artifact(
|
2329
|
+
... "README",
|
2330
|
+
... artifact_path_or_content="oci://path/to/bucket/README.md",
|
2331
|
+
... path_type=MetadataArtifactPathType.OSS
|
2332
|
+
... )
|
2333
|
+
|
2303
2334
|
Returns
|
2304
2335
|
-------
|
2305
2336
|
ModelMetadataArtifactDetails
|
@@ -2317,16 +2348,23 @@ class DataScienceModel(Builder):
|
|
2317
2348
|
}
|
2318
2349
|
|
2319
2350
|
"""
|
2351
|
+
if path_type == MetadataArtifactPathType.CONTENT and not isinstance(
|
2352
|
+
artifact_path_or_content, bytes
|
2353
|
+
):
|
2354
|
+
raise InvalidArtifactPathTypeOrContentError(
|
2355
|
+
f"Invalid type of artifact content: {type(artifact_path_or_content)}. It should be bytes."
|
2356
|
+
)
|
2357
|
+
|
2320
2358
|
return self.dsc_model.create_defined_metadata_artifact(
|
2321
2359
|
metadata_key_name=metadata_key_name,
|
2322
|
-
|
2360
|
+
artifact_path_or_content=artifact_path_or_content,
|
2323
2361
|
path_type=path_type,
|
2324
2362
|
)
|
2325
2363
|
|
2326
2364
|
def update_custom_metadata_artifact(
|
2327
2365
|
self,
|
2328
2366
|
metadata_key_name: str,
|
2329
|
-
artifact_path_or_content: str,
|
2367
|
+
artifact_path_or_content: Union[str, bytes],
|
2330
2368
|
path_type: MetadataArtifactPathType = MetadataArtifactPathType.LOCAL,
|
2331
2369
|
) -> ModelMetadataArtifactDetails:
|
2332
2370
|
"""Update model custom metadata artifact for specified model.
|
@@ -2336,8 +2374,10 @@ class DataScienceModel(Builder):
|
|
2336
2374
|
metadata_key_name: str
|
2337
2375
|
The name of the model custom metadata key
|
2338
2376
|
|
2339
|
-
artifact_path_or_content: str
|
2340
|
-
The model custom metadata artifact path. It can also be the actual content of the custom metadata
|
2377
|
+
artifact_path_or_content: Union[str,bytes]
|
2378
|
+
The model custom metadata artifact path to be uploaded. It can also be the actual content of the custom metadata
|
2379
|
+
The type is string when it represents local path or oss path.
|
2380
|
+
The type is bytes when it represents content itself
|
2341
2381
|
|
2342
2382
|
path_type: MetadataArtifactPathType
|
2343
2383
|
Can be either of MetadataArtifactPathType.LOCAL , MetadataArtifactPathType.OSS , MetadataArtifactPathType.CONTENT
|
@@ -2361,16 +2401,23 @@ class DataScienceModel(Builder):
|
|
2361
2401
|
}
|
2362
2402
|
|
2363
2403
|
"""
|
2404
|
+
if path_type == MetadataArtifactPathType.CONTENT and not isinstance(
|
2405
|
+
artifact_path_or_content, bytes
|
2406
|
+
):
|
2407
|
+
raise InvalidArtifactPathTypeOrContentError(
|
2408
|
+
f"Invalid type of artifact content: {type(artifact_path_or_content)}. It should be bytes."
|
2409
|
+
)
|
2410
|
+
|
2364
2411
|
return self.dsc_model.update_custom_metadata_artifact(
|
2365
2412
|
metadata_key_name=metadata_key_name,
|
2366
|
-
|
2413
|
+
artifact_path_or_content=artifact_path_or_content,
|
2367
2414
|
path_type=path_type,
|
2368
2415
|
)
|
2369
2416
|
|
2370
2417
|
def update_defined_metadata_artifact(
|
2371
2418
|
self,
|
2372
2419
|
metadata_key_name: str,
|
2373
|
-
artifact_path_or_content: str,
|
2420
|
+
artifact_path_or_content: Union[str, bytes],
|
2374
2421
|
path_type: MetadataArtifactPathType = MetadataArtifactPathType.LOCAL,
|
2375
2422
|
) -> ModelMetadataArtifactDetails:
|
2376
2423
|
"""Update model defined metadata artifact for specified model.
|
@@ -2380,8 +2427,10 @@ class DataScienceModel(Builder):
|
|
2380
2427
|
metadata_key_name: str
|
2381
2428
|
The name of the model defined metadata key
|
2382
2429
|
|
2383
|
-
artifact_path_or_content: str
|
2384
|
-
The model defined metadata artifact path. It can also be the actual content of the defined metadata
|
2430
|
+
artifact_path_or_content: Union[str,bytes]
|
2431
|
+
The model defined metadata artifact path to be uploaded. It can also be the actual content of the defined metadata
|
2432
|
+
The type is string when it represents local path or oss path.
|
2433
|
+
The type is bytes when it represents content itself
|
2385
2434
|
|
2386
2435
|
path_type: MetadataArtifactPathType
|
2387
2436
|
Can be either of MetadataArtifactPathType.LOCAL , MetadataArtifactPathType.OSS , MetadataArtifactPathType.CONTENT
|
@@ -2405,9 +2454,16 @@ class DataScienceModel(Builder):
|
|
2405
2454
|
}
|
2406
2455
|
|
2407
2456
|
"""
|
2457
|
+
if path_type == MetadataArtifactPathType.CONTENT and not isinstance(
|
2458
|
+
artifact_path_or_content, bytes
|
2459
|
+
):
|
2460
|
+
raise InvalidArtifactPathTypeOrContentError(
|
2461
|
+
f"Invalid type of artifact content: {type(artifact_path_or_content)}. It should be bytes."
|
2462
|
+
)
|
2463
|
+
|
2408
2464
|
return self.dsc_model.update_defined_metadata_artifact(
|
2409
2465
|
metadata_key_name=metadata_key_name,
|
2410
|
-
|
2466
|
+
artifact_path_or_content=artifact_path_or_content,
|
2411
2467
|
path_type=path_type,
|
2412
2468
|
)
|
2413
2469
|
|
@@ -2442,8 +2498,10 @@ class DataScienceModel(Builder):
|
|
2442
2498
|
)
|
2443
2499
|
artifact_file_path = os.path.join(target_dir, f"{metadata_key_name}")
|
2444
2500
|
|
2445
|
-
if not override and
|
2446
|
-
raise FileExistsError(
|
2501
|
+
if not override and is_path_exists(artifact_file_path):
|
2502
|
+
raise FileExistsError(
|
2503
|
+
f"File already exists: {artifact_file_path}. Please use boolean override parameter to override the file content."
|
2504
|
+
)
|
2447
2505
|
|
2448
2506
|
with open(artifact_file_path, "wb") as _file:
|
2449
2507
|
_file.write(file_content)
|
@@ -2481,8 +2539,10 @@ class DataScienceModel(Builder):
|
|
2481
2539
|
)
|
2482
2540
|
artifact_file_path = os.path.join(target_dir, f"{metadata_key_name}")
|
2483
2541
|
|
2484
|
-
if not override and
|
2485
|
-
raise FileExistsError(
|
2542
|
+
if not override and is_path_exists(artifact_file_path):
|
2543
|
+
raise FileExistsError(
|
2544
|
+
f"File already exists: {artifact_file_path}. Please use boolean override parameter to override the file content."
|
2545
|
+
)
|
2486
2546
|
|
2487
2547
|
with open(artifact_file_path, "wb") as _file:
|
2488
2548
|
_file.write(file_content)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
|
3
|
-
# Copyright (c) 2022,
|
3
|
+
# Copyright (c) 2022, 2025 Oracle and/or its affiliates.
|
4
4
|
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
|
5
5
|
|
6
6
|
import logging
|
@@ -28,7 +28,7 @@ from ads.common.oci_datascience import OCIDataScienceMixin
|
|
28
28
|
from ads.common.oci_mixin import OCIWorkRequestMixin
|
29
29
|
from ads.common.oci_resource import SEARCH_TYPE, OCIResource
|
30
30
|
from ads.common.serializer import DataClassSerializable
|
31
|
-
from ads.common.utils import extract_region, read_file
|
31
|
+
from ads.common.utils import extract_region, read_file
|
32
32
|
from ads.common.work_request import DataScienceWorkRequest
|
33
33
|
from ads.model.common.utils import MetadataArtifactPathType
|
34
34
|
from ads.model.deployment import ModelDeployment
|
@@ -621,45 +621,43 @@ class OCIDataScienceModel(
|
|
621
621
|
return False
|
622
622
|
|
623
623
|
def get_metadata_content(
|
624
|
-
self,
|
625
|
-
|
624
|
+
self,
|
625
|
+
artifact_path_or_content: Union[str, bytes],
|
626
|
+
path_type: MetadataArtifactPathType,
|
627
|
+
) -> bytes:
|
626
628
|
"""
|
627
629
|
returns the content of the metadata artifact
|
628
630
|
|
629
631
|
Parameters
|
630
632
|
----------
|
631
|
-
artifact_path_or_content: str
|
633
|
+
artifact_path_or_content: Union[str,bytes]
|
632
634
|
The path of the file (local or oss) containing metadata artifact or content.
|
635
|
+
The type is string when it represents local path or oss path.
|
636
|
+
The type is bytes when it represents content itself
|
633
637
|
path_type: str
|
634
638
|
can be one of local , oss or actual content itself
|
635
639
|
|
636
640
|
Returns
|
637
641
|
-------
|
638
|
-
|
642
|
+
bytes
|
643
|
+
metadata artifact content in bytes
|
639
644
|
"""
|
640
645
|
|
641
646
|
if path_type == MetadataArtifactPathType.CONTENT:
|
642
647
|
return artifact_path_or_content
|
643
648
|
|
644
|
-
elif
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
)
|
649
|
-
|
650
|
-
with open(artifact_path_or_content, "rb") as f:
|
651
|
-
contents = f.read()
|
652
|
-
logger.info(f"The metadata artifact content - {contents}")
|
653
|
-
|
654
|
-
return contents
|
655
|
-
|
656
|
-
elif path_type == MetadataArtifactPathType.OSS:
|
649
|
+
elif (
|
650
|
+
path_type == MetadataArtifactPathType.LOCAL
|
651
|
+
or path_type == MetadataArtifactPathType.OSS
|
652
|
+
):
|
657
653
|
if not utils.is_path_exists(artifact_path_or_content):
|
658
654
|
raise FileNotFoundError(f"File not found: {artifact_path_or_content}")
|
659
|
-
|
660
|
-
|
661
|
-
read_file(file_path=artifact_path_or_content, auth=default_signer())
|
655
|
+
signer = (
|
656
|
+
default_signer() if path_type == MetadataArtifactPathType.OSS else {}
|
662
657
|
)
|
658
|
+
contents = read_file(
|
659
|
+
file_path=artifact_path_or_content, auth=signer
|
660
|
+
).encode()
|
663
661
|
logger.debug(f"The metadata artifact content - {contents}")
|
664
662
|
|
665
663
|
return contents
|
@@ -670,7 +668,7 @@ class OCIDataScienceModel(
|
|
670
668
|
def create_custom_metadata_artifact(
|
671
669
|
self,
|
672
670
|
metadata_key_name: str,
|
673
|
-
|
671
|
+
artifact_path_or_content: Union[str, bytes],
|
674
672
|
path_type: MetadataArtifactPathType,
|
675
673
|
) -> ModelMetadataArtifactDetails:
|
676
674
|
"""Creates model custom metadata artifact for specified model.
|
@@ -680,8 +678,10 @@ class OCIDataScienceModel(
|
|
680
678
|
metadata_key_name: str
|
681
679
|
The name of the model metadatum in the metadata.
|
682
680
|
|
683
|
-
|
684
|
-
The
|
681
|
+
artifact_path_or_content: Union[str,bytes]
|
682
|
+
The path of the file (local or oss) containing metadata artifact or content.
|
683
|
+
The type is string when it represents local path or oss path.
|
684
|
+
The type is bytes when it represents content itself
|
685
685
|
|
686
686
|
path_type: MetadataArtifactPathType
|
687
687
|
can be one of local , oss or actual content itself
|
@@ -704,12 +704,13 @@ class OCIDataScienceModel(
|
|
704
704
|
|
705
705
|
"""
|
706
706
|
contents = self.get_metadata_content(
|
707
|
-
artifact_path_or_content=
|
707
|
+
artifact_path_or_content=artifact_path_or_content, path_type=path_type
|
708
708
|
)
|
709
|
+
|
709
710
|
response = self.client.create_model_custom_metadatum_artifact(
|
710
711
|
self.id,
|
711
712
|
metadata_key_name,
|
712
|
-
|
713
|
+
contents,
|
713
714
|
content_disposition="form" '-data; name="file"; filename="readme.*"',
|
714
715
|
)
|
715
716
|
response_data = convert_model_metadata_response(
|
@@ -723,7 +724,7 @@ class OCIDataScienceModel(
|
|
723
724
|
def create_defined_metadata_artifact(
|
724
725
|
self,
|
725
726
|
metadata_key_name: str,
|
726
|
-
|
727
|
+
artifact_path_or_content: Union[str, bytes],
|
727
728
|
path_type: MetadataArtifactPathType,
|
728
729
|
) -> ModelMetadataArtifactDetails:
|
729
730
|
"""Creates model defined metadata artifact for specified model.
|
@@ -733,8 +734,10 @@ class OCIDataScienceModel(
|
|
733
734
|
metadata_key_name: str
|
734
735
|
The name of the model metadatum in the metadata.
|
735
736
|
|
736
|
-
|
737
|
-
The
|
737
|
+
artifact_path_or_content: Union[str,bytes]
|
738
|
+
The path of the file (local or oss) containing metadata artifact or content.
|
739
|
+
The type is string when it represents local path or oss path.
|
740
|
+
The type is bytes when it represents content itself
|
738
741
|
|
739
742
|
path_type: MetadataArtifactPathType
|
740
743
|
can be one of local , oss or actual content itself.
|
@@ -757,12 +760,13 @@ class OCIDataScienceModel(
|
|
757
760
|
|
758
761
|
"""
|
759
762
|
contents = self.get_metadata_content(
|
760
|
-
artifact_path_or_content=
|
763
|
+
artifact_path_or_content=artifact_path_or_content, path_type=path_type
|
761
764
|
)
|
765
|
+
|
762
766
|
response = self.client.create_model_defined_metadatum_artifact(
|
763
767
|
self.id,
|
764
768
|
metadata_key_name,
|
765
|
-
|
769
|
+
contents,
|
766
770
|
content_disposition='form-data; name="file"; filename="readme.*"',
|
767
771
|
)
|
768
772
|
response_data = convert_model_metadata_response(
|
@@ -776,7 +780,7 @@ class OCIDataScienceModel(
|
|
776
780
|
def update_defined_metadata_artifact(
|
777
781
|
self,
|
778
782
|
metadata_key_name: str,
|
779
|
-
|
783
|
+
artifact_path_or_content: Union[str, bytes],
|
780
784
|
path_type: MetadataArtifactPathType,
|
781
785
|
) -> ModelMetadataArtifactDetails:
|
782
786
|
"""Update model defined metadata artifact for specified model.
|
@@ -786,8 +790,10 @@ class OCIDataScienceModel(
|
|
786
790
|
metadata_key_name: str
|
787
791
|
The name of the model metadatum in the metadata.
|
788
792
|
|
789
|
-
|
790
|
-
The
|
793
|
+
artifact_path_or_content: Union[str,bytes]
|
794
|
+
The path of the file (local or oss) containing metadata artifact or content.
|
795
|
+
The type is string when it represents local path or oss path.
|
796
|
+
The type is bytes when it represents content itself
|
791
797
|
|
792
798
|
path_type:MetadataArtifactPathType
|
793
799
|
can be one of local , oss or actual content itself.
|
@@ -809,12 +815,12 @@ class OCIDataScienceModel(
|
|
809
815
|
|
810
816
|
"""
|
811
817
|
contents = self.get_metadata_content(
|
812
|
-
artifact_path_or_content=
|
818
|
+
artifact_path_or_content=artifact_path_or_content, path_type=path_type
|
813
819
|
)
|
814
820
|
response = self.client.update_model_defined_metadatum_artifact(
|
815
821
|
self.id,
|
816
822
|
metadata_key_name,
|
817
|
-
|
823
|
+
contents,
|
818
824
|
content_disposition='form-data; name="file"; filename="readme.*"',
|
819
825
|
)
|
820
826
|
response_data = convert_model_metadata_response(
|
@@ -828,7 +834,7 @@ class OCIDataScienceModel(
|
|
828
834
|
def update_custom_metadata_artifact(
|
829
835
|
self,
|
830
836
|
metadata_key_name: str,
|
831
|
-
|
837
|
+
artifact_path_or_content: Union[str, bytes],
|
832
838
|
path_type: MetadataArtifactPathType,
|
833
839
|
) -> ModelMetadataArtifactDetails:
|
834
840
|
"""Update model custom metadata artifact for specified model.
|
@@ -838,8 +844,10 @@ class OCIDataScienceModel(
|
|
838
844
|
metadata_key_name: str
|
839
845
|
The name of the model metadatum in the metadata.
|
840
846
|
|
841
|
-
|
842
|
-
The
|
847
|
+
artifact_path_or_content: Union[str,bytes]
|
848
|
+
The path of the file (local or oss) containing metadata artifact or content.
|
849
|
+
The type is string when it represents local path or oss path.
|
850
|
+
The type is bytes when it represents content itself
|
843
851
|
|
844
852
|
path_type: MetadataArtifactPathType
|
845
853
|
can be one of local , oss or actual content itself.
|
@@ -862,12 +870,12 @@ class OCIDataScienceModel(
|
|
862
870
|
|
863
871
|
"""
|
864
872
|
contents = self.get_metadata_content(
|
865
|
-
artifact_path_or_content=
|
873
|
+
artifact_path_or_content=artifact_path_or_content, path_type=path_type
|
866
874
|
)
|
867
875
|
response = self.client.update_model_custom_metadatum_artifact(
|
868
876
|
self.id,
|
869
877
|
metadata_key_name,
|
870
|
-
|
878
|
+
contents,
|
871
879
|
content_disposition="form" '-data; name="file"; filename="readme.*"',
|
872
880
|
)
|
873
881
|
response_data = convert_model_metadata_response(
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# Copyright (c) 2023, 2024 Oracle and/or its affiliates.
|
4
4
|
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
|
5
5
|
|
6
|
-
from ..const import AUTO_SELECT, SupportedModels
|
6
|
+
from ..const import AUTO_SELECT, SpeedAccuracyMode, SupportedModels
|
7
7
|
from ..model_evaluator import ModelEvaluator
|
8
8
|
from ..operator_config import ForecastOperatorConfig
|
9
9
|
from .arima import ArimaOperatorModel
|
@@ -66,6 +66,13 @@ class ForecastOperatorModelFactory:
|
|
66
66
|
if model_type == AUTO_SELECT:
|
67
67
|
model_type = cls.auto_select_model(datasets, operator_config)
|
68
68
|
operator_config.spec.model_kwargs = {}
|
69
|
+
# set the explanations accuracy mode to AUTOMLX if the selected model is automlx
|
70
|
+
if (
|
71
|
+
model_type == SupportedModels.AutoMLX
|
72
|
+
and operator_config.spec.explanations_accuracy_mode
|
73
|
+
== SpeedAccuracyMode.FAST_APPROXIMATE
|
74
|
+
):
|
75
|
+
operator_config.spec.explanations_accuracy_mode = SpeedAccuracyMode.AUTOMLX
|
69
76
|
if model_type not in cls._MAP:
|
70
77
|
raise UnSupportedModelError(model_type)
|
71
78
|
return cls._MAP[model_type](config=operator_config, datasets=datasets)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: oracle_ads
|
3
|
-
Version: 2.13.
|
3
|
+
Version: 2.13.5
|
4
4
|
Summary: Oracle Accelerated Data Science SDK
|
5
5
|
Keywords: Oracle Cloud Infrastructure,OCI,Machine Learning,ML,Artificial Intelligence,AI,Data Science,Cloud,Oracle
|
6
6
|
Author: Oracle Data Science
|
@@ -13,6 +13,7 @@ Classifier: Operating System :: OS Independent
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.9
|
14
14
|
Classifier: Programming Language :: Python :: 3.10
|
15
15
|
Classifier: Programming Language :: Python :: 3.11
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
16
17
|
License-File: LICENSE.txt
|
17
18
|
Requires-Dist: PyYAML>=6
|
18
19
|
Requires-Dist: asteval>=0.9.25
|
@@ -97,9 +98,11 @@ Requires-Dist: evaluate>=0.4.0 ; extra == "llm"
|
|
97
98
|
Requires-Dist: ipython>=7.23.1, <8.0 ; extra == "notebook"
|
98
99
|
Requires-Dist: ipywidgets~=7.6.3 ; extra == "notebook"
|
99
100
|
Requires-Dist: lightgbm ; extra == "onnx"
|
100
|
-
Requires-Dist: onnx>=1.12.0,<=1.15.0 ; extra == "onnx"
|
101
|
+
Requires-Dist: onnx>=1.12.0,<=1.15.0 ; extra == "onnx" and ( python_version < '3.12')
|
102
|
+
Requires-Dist: onnx>=1.12.0 ; extra == "onnx" and ( python_version >= '3.12')
|
101
103
|
Requires-Dist: onnxmltools>=1.10.0 ; extra == "onnx"
|
102
|
-
Requires-Dist: onnxruntime~=1.17.0,!=1.16.0 ; extra == "onnx"
|
104
|
+
Requires-Dist: onnxruntime~=1.17.0,!=1.16.0 ; extra == "onnx" and ( python_version < '3.12')
|
105
|
+
Requires-Dist: onnxruntime ; extra == "onnx" and ( python_version >= '3.12')
|
103
106
|
Requires-Dist: oracle_ads[viz] ; extra == "onnx"
|
104
107
|
Requires-Dist: protobuf ; extra == "onnx"
|
105
108
|
Requires-Dist: skl2onnx>=1.10.4 ; extra == "onnx"
|
@@ -134,7 +137,8 @@ Requires-Dist: plotly ; extra == "recommender"
|
|
134
137
|
Requires-Dist: report-creator==1.0.37 ; extra == "recommender"
|
135
138
|
Requires-Dist: pyspark>=3.0.0 ; extra == "spark"
|
136
139
|
Requires-Dist: oracle_ads[viz] ; extra == "tensorflow"
|
137
|
-
Requires-Dist: tensorflow<=2.15.1 ; extra == "tensorflow"
|
140
|
+
Requires-Dist: tensorflow<=2.15.1 ; extra == "tensorflow" and ( python_version < '3.12')
|
141
|
+
Requires-Dist: tensorflow ; extra == "tensorflow" and ( python_version >= '3.12')
|
138
142
|
Requires-Dist: arff ; extra == "testsuite"
|
139
143
|
Requires-Dist: autogen-agentchat<0.4 ; extra == "testsuite"
|
140
144
|
Requires-Dist: category_encoders==2.6.3 ; extra == "testsuite"
|
@@ -2,22 +2,23 @@ ads/__init__.py,sha256=OxHySbHbMqPgZ8sUj33Bxy-smSiNgRjtcSUV77oBL08,3787
|
|
2
2
|
ads/cli.py,sha256=WkOpZv8jWgFYN9BNkt2LJBs9KzJHgFqq3pIymsqc8Q4,4292
|
3
3
|
ads/config.py,sha256=Xa6CGxNUQf3CKTS9HpXnAWR5kOFvAs0M66f8kEl6z54,8051
|
4
4
|
ads/aqua/__init__.py,sha256=I3HL7LadTue3X41EPUZue4rILG8xeMTapJiBA6Lu8Mg,1149
|
5
|
-
ads/aqua/app.py,sha256=
|
5
|
+
ads/aqua/app.py,sha256=hQq0s-JU_w0-rrahKjiI4J3VKaYGS3m2lWx4Q86SPdA,14655
|
6
6
|
ads/aqua/cli.py,sha256=W-0kswzRDEilqHyw5GSMOrARgvOyPRtkEtpy54ew0Jo,3907
|
7
|
-
ads/aqua/constants.py,sha256=
|
7
|
+
ads/aqua/constants.py,sha256=4UACDyKbJEJ8mojcmAf2bYaeE62SH2oIhW20vgFX-V4,5003
|
8
8
|
ads/aqua/data.py,sha256=HfxLfKiNiPJecMQy0JAztUsT3IdZilHHHOrCJnjZMc4,408
|
9
9
|
ads/aqua/ui.py,sha256=HQrp0gGgXC2WsbUzdqSE2mC6jZjryvjIisj74N-PxA0,20230
|
10
10
|
ads/aqua/client/__init__.py,sha256=-46EcKQjnWEXxTt85bQzXjA5xsfoBXIGm_syKFlVL1c,178
|
11
11
|
ads/aqua/client/client.py,sha256=zlscNhFZVgGnkJ-aj5iZ5v5FedOzpQc4RJDxGPl9VvQ,31388
|
12
|
+
ads/aqua/client/openai_client.py,sha256=Gi8nSrtPAUOjxRNu-6UUAqtxWyQIQ5CAvatnm7XfnaM,12501
|
12
13
|
ads/aqua/common/__init__.py,sha256=rZrmh1nho40OCeabXCNWtze-mXi-PGKetcZdxZSn3_0,204
|
13
14
|
ads/aqua/common/decorator.py,sha256=JEN6Cy4DYgQbmIR3ShCjTuBMCnilDxq7jkYMJse1rcM,4112
|
14
|
-
ads/aqua/common/entities.py,sha256=
|
15
|
-
ads/aqua/common/enums.py,sha256=
|
15
|
+
ads/aqua/common/entities.py,sha256=kLUJu77Sg97VrHb76PvFAAaSWEUum9nYTwzMtOnUo50,8922
|
16
|
+
ads/aqua/common/enums.py,sha256=ZuGidUsZvfWkTxkj4S6K9tRJAXPTrR7t2v4JgGSV7_8,3175
|
16
17
|
ads/aqua/common/errors.py,sha256=QONm-2jKBg8AjgOKXm6x-arAV1KIW9pdhfNN1Ys21Wo,3044
|
17
|
-
ads/aqua/common/utils.py,sha256=
|
18
|
+
ads/aqua/common/utils.py,sha256=enU8TvoR4-kaNKRt7SCF-ARMFrDNs6vOsubFfyqV5S0,42843
|
18
19
|
ads/aqua/config/__init__.py,sha256=2a_1LI4jWtJpbic5_v4EoOUTXCAH7cmsy9BW5prDHjU,179
|
19
20
|
ads/aqua/config/config.py,sha256=MNY4ttccaQdhxUyS1o367YIDl-U_AiSLVlgvzSd7JE4,944
|
20
|
-
ads/aqua/config/container_config.py,sha256=
|
21
|
+
ads/aqua/config/container_config.py,sha256=7n3ZZG7Y1J4IkwEAhkoQ-h638pthPcyjRQogR25pSB4,8292
|
21
22
|
ads/aqua/config/evaluation/__init__.py,sha256=2a_1LI4jWtJpbic5_v4EoOUTXCAH7cmsy9BW5prDHjU,179
|
22
23
|
ads/aqua/config/evaluation/evaluation_service_config.py,sha256=pCsvcHXgLQwp5sU29xrt0l5VTsd8yMGFEnS0IOPGUb0,3200
|
23
24
|
ads/aqua/config/utils/__init__.py,sha256=2a_1LI4jWtJpbic5_v4EoOUTXCAH7cmsy9BW5prDHjU,179
|
@@ -28,17 +29,17 @@ ads/aqua/dummy_data/oci_models.json,sha256=mxUU8o3plmAFfr06fQmIQuiGe2qFFBlUB7QNP
|
|
28
29
|
ads/aqua/dummy_data/readme.md,sha256=AlBPt0HBSOFA5HbYVsFsdTm-BC3R5NRpcKrTxdjEnlI,1256
|
29
30
|
ads/aqua/evaluation/__init__.py,sha256=Fd7WL7MpQ1FtJjlftMY2KHli5cz1wr5MDu3hGmV89a0,298
|
30
31
|
ads/aqua/evaluation/constants.py,sha256=dmvDs_t93EhGa0N7J0y8R18AFW0cokj2Q5Oy0LHelxU,1436
|
31
|
-
ads/aqua/evaluation/entities.py,sha256=
|
32
|
+
ads/aqua/evaluation/entities.py,sha256=2a7ibQQK3WlKjU6ETaJz06nMl_aD3jgg6hQhD47jqY8,5934
|
32
33
|
ads/aqua/evaluation/errors.py,sha256=IbqcQFgXfwzlF5EoaT5jPw8JE8OWqtgiXpH0ddFhRzY,4523
|
33
|
-
ads/aqua/evaluation/evaluation.py,sha256=
|
34
|
+
ads/aqua/evaluation/evaluation.py,sha256=uvthC_G00lFCSIUipCbCJ1YGobua2-ny6lmX76nfiWk,68837
|
34
35
|
ads/aqua/extension/__init__.py,sha256=mRArjU6UZpZYVr0qHSSkPteA_CKcCZIczOFaK421m9o,1453
|
35
|
-
ads/aqua/extension/aqua_ws_msg_handler.py,sha256=
|
36
|
-
ads/aqua/extension/base_handler.py,sha256=
|
36
|
+
ads/aqua/extension/aqua_ws_msg_handler.py,sha256=VDa9vQOsYKX6flsUkDEx6nl-5MFCH5RgCFMZVGXPpvY,2561
|
37
|
+
ads/aqua/extension/base_handler.py,sha256=W-eBXn9XYypCZuY84e9cSKRuY0CDyuou_znV6Yn9YzU,3047
|
37
38
|
ads/aqua/extension/common_handler.py,sha256=Oz3riHDy5pFfbArLge5iaaRoK8PEAnkBvhqqVGbUsvE,4196
|
38
39
|
ads/aqua/extension/common_ws_msg_handler.py,sha256=pMX79tmJKTKog684o6vuwZkAD47l8SxtRx5TNn8se7k,2230
|
39
|
-
ads/aqua/extension/deployment_handler.py,sha256=
|
40
|
+
ads/aqua/extension/deployment_handler.py,sha256=Q5EHfAWcEqiE9rH0lQeFXPn0WQdwiRlrl4lZI1OXPqo,10394
|
40
41
|
ads/aqua/extension/deployment_ws_msg_handler.py,sha256=JX3ZHRtscrflSxT7ZTEEI_p_owtk3m5FZq3QXE96AGY,2013
|
41
|
-
ads/aqua/extension/errors.py,sha256=
|
42
|
+
ads/aqua/extension/errors.py,sha256=4LbzZdCoDEtOcrVI-1dgiza4oAYGof6w5LbN6HqroYk,1396
|
42
43
|
ads/aqua/extension/evaluation_handler.py,sha256=fJH73fa0xmkEiP8SxKL4A4dJgj-NoL3z_G-w_WW2zJs,4353
|
43
44
|
ads/aqua/extension/evaluation_ws_msg_handler.py,sha256=dv0iwOSTxYj1kQ1rPEoDmGgFBzLUCLXq5h7rpmY2T1M,2098
|
44
45
|
ads/aqua/extension/finetune_handler.py,sha256=97obbhITswTrBvl88g7gk4GvF2SUHBGUAq4rOylFbtQ,3079
|
@@ -46,23 +47,25 @@ ads/aqua/extension/model_handler.py,sha256=Z0DYPCFALme_sae1Bm-Kh97e5VQWqsOuUZ8Yr
|
|
46
47
|
ads/aqua/extension/models_ws_msg_handler.py,sha256=3CPfzWl1xfrE2Dpn_WYP9zY0kY5zlsAE8tU_6Y2-i18,1801
|
47
48
|
ads/aqua/extension/ui_handler.py,sha256=Q0LkrV6VtVUI4GpNgqJQt8SGzxHzp4X5hdHF6KgPp9M,11217
|
48
49
|
ads/aqua/extension/ui_websocket_handler.py,sha256=oLFjaDrqkSERbhExdvxjLJX0oRcP-DVJ_aWn0qy0uvo,5084
|
49
|
-
ads/aqua/extension/utils.py,sha256=
|
50
|
+
ads/aqua/extension/utils.py,sha256=RBHTN5rPcg4J6i6O7I1ageVT7Iw3GM5zbfVNTg3QhCc,5834
|
50
51
|
ads/aqua/extension/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
52
|
ads/aqua/extension/models/ws_models.py,sha256=y_3LlzKGNRcWqfuW5TGHl0PchM5xE83WGmRL0t0GKwY,3306
|
52
53
|
ads/aqua/finetuning/__init__.py,sha256=vwYT5PluMR0mDQwVIavn_8Icms7LmvfV_FOrJ8fJx8I,296
|
53
54
|
ads/aqua/finetuning/constants.py,sha256=Fx-8LMyF9ZbV9zo5LUYgCv9VniV7djGnM2iW7js2ILE,844
|
54
55
|
ads/aqua/finetuning/entities.py,sha256=1RRaRFuxoBtApeCIqG-0H8Iom2kz2dv7LOX6y2wWLnA,6116
|
55
|
-
ads/aqua/finetuning/finetuning.py,sha256
|
56
|
+
ads/aqua/finetuning/finetuning.py,sha256=HWTBPq_rVCul61inyEmbqLyCtWLItNPRAeOfX83Bxa4,29514
|
56
57
|
ads/aqua/model/__init__.py,sha256=j2iylvERdANxgrEDp7b_mLcKMz1CF5Go0qgYCiMwdos,278
|
57
|
-
ads/aqua/model/constants.py,sha256=
|
58
|
+
ads/aqua/model/constants.py,sha256=3BT5Dpr7EmTrBL7xF128gHGGjwyBgwAr3OlLSWSnR9g,1628
|
58
59
|
ads/aqua/model/entities.py,sha256=kBjsihInnbGw9MhWQEfJ4hcWEzv6BxF8VlDDFWUPYVg,9903
|
59
|
-
ads/aqua/model/enums.py,sha256=
|
60
|
-
ads/aqua/model/model.py,sha256=
|
60
|
+
ads/aqua/model/enums.py,sha256=iJi-AZRh7KR_HK5HUwTkgnTOGVna2Ai5WEzqCjk7Y3s,1079
|
61
|
+
ads/aqua/model/model.py,sha256=Um7CqAJlFm4UOFtfU70KUXOaTC2fVpixJi1MqOUBKSQ,78762
|
61
62
|
ads/aqua/modeldeployment/__init__.py,sha256=RJCfU1yazv3hVWi5rS08QVLTpTwZLnlC8wU8diwFjnM,391
|
62
63
|
ads/aqua/modeldeployment/constants.py,sha256=lJF77zwxmlECljDYjwFAMprAUR_zctZHmawiP-4alLg,296
|
63
|
-
ads/aqua/modeldeployment/deployment.py,sha256=
|
64
|
-
ads/aqua/modeldeployment/entities.py,sha256=
|
65
|
-
ads/aqua/modeldeployment/inference.py,sha256=
|
64
|
+
ads/aqua/modeldeployment/deployment.py,sha256=bKwq0-qrAni2mZ9LMslcME-qlWSOhp7bn1H1zCvi1e0,55636
|
65
|
+
ads/aqua/modeldeployment/entities.py,sha256=qwNH-8eHv-C2QPMITGQkb6haaJRvZ5c0i1H0Aoxeiu4,27100
|
66
|
+
ads/aqua/modeldeployment/inference.py,sha256=rjTF-AM_rHLzL5HCxdLRTrsaSMdB-SzFYUp9dIy5ejw,2109
|
67
|
+
ads/aqua/modeldeployment/utils.py,sha256=YmQ1PNDTIJ_s1gjlwEdNlZL5VhAjx8Zd4pvyUKgCb58,21240
|
68
|
+
ads/aqua/resources/gpu_shapes_index.json,sha256=-6rSkyQ04T1z_Yfr3cxGPI7NAtgTwG7beIEjLYuMMIc,1948
|
66
69
|
ads/aqua/server/__init__.py,sha256=fswoO0kX0hrp2b1owF4f-bv_OodntvvUY3FvhL6FCMk,179
|
67
70
|
ads/aqua/server/__main__.py,sha256=5dbL01nblJYTQ9Qi8A3dT7Dt7qDhxfPMlEIAYqiQ9iI,749
|
68
71
|
ads/aqua/server/app.py,sha256=IjTFYSh6teWsoxuv5BjBvfurxNReLp6rYtYpYEU61oM,1419
|
@@ -102,7 +105,7 @@ ads/common/oci_logging.py,sha256=U0HRAUkpnycGpo2kWMrT3wjQVFZaWqLL6pZ2B6_epsM,419
|
|
102
105
|
ads/common/oci_mixin.py,sha256=mhja5UomrhXH43uB0jT-u2KaT37op9tM-snxvtGfc40,34548
|
103
106
|
ads/common/oci_resource.py,sha256=zRa4z5yh5GoOW_6ZE57nhMmK2d94WUqyFqvaNvje9Co,4484
|
104
107
|
ads/common/serializer.py,sha256=JyUJWNybuCwFO_oem41F8477QR2Mj-1P-PKJ-3D3_qw,18813
|
105
|
-
ads/common/utils.py,sha256=
|
108
|
+
ads/common/utils.py,sha256=Clw1unEySV4XMEx3VKLOl60lU-g5wH9n4oMdYYxTKdM,53883
|
106
109
|
ads/common/word_lists.py,sha256=luyfSHWZtwAYKuRsSmUYd1VskKYR_8jG_Y26D3j2Vc8,22306
|
107
110
|
ads/common/work_request.py,sha256=z7OGroZNKs9FnOVCi89QnrxOh4PEWEdTsyXWUUydKwM,6591
|
108
111
|
ads/common/artifact/.model-ignore,sha256=C8hKYunLSYF36BqZiTaCZN-XLpl3Iuhphsa8RZXfOy8,879
|
@@ -497,7 +500,7 @@ ads/model/artifact.py,sha256=CmHdeINF0K6p2MaWZOwU5tLPQ9PoIdnfQis2voMAhHE,21459
|
|
497
500
|
ads/model/artifact_downloader.py,sha256=mGVvIl_pfNikvPIsPgLCrh36z-puQ-DCYGjYbqGrSJ0,9769
|
498
501
|
ads/model/artifact_uploader.py,sha256=jdkpmncczceOc28LyMkv4u6f845HJ1vVCoI-hLBT-RM,11305
|
499
502
|
ads/model/base_properties.py,sha256=YeVyjCync4fzqqruMc9UfZKR4PnscU31n0mf4CJv3R8,7885
|
500
|
-
ads/model/datascience_model.py,sha256=
|
503
|
+
ads/model/datascience_model.py,sha256=T0T6czpp6hTFTAkyJv3b-9Iz8nw9F-DiW3-pEB6O-6E,97619
|
501
504
|
ads/model/generic_model.py,sha256=JVL5WYpZW7LSECm8Yeq59IDLymMRgfF2SIkOkqdoU8c,147014
|
502
505
|
ads/model/model_file_description_schema.json,sha256=NZw_U4CvKf9oOdxCKr1eUxq8FHwjR_g0GSDk0Hz3SnE,1402
|
503
506
|
ads/model/model_introspect.py,sha256=z9pJul9dwT9w8flvRguhu0ZKoEkbm2Tvdutw_SHYTeg,9745
|
@@ -560,7 +563,7 @@ ads/model/serde/common.py,sha256=cDtblusT8fZ04mbBASg7EC62oaB9Sp7X_NPPhPiDnJk,112
|
|
560
563
|
ads/model/serde/model_input.py,sha256=MB6Uf4H_UzlAUTRIRqHTW4ZiyQKw0yerGtUE-WFSw-g,18577
|
561
564
|
ads/model/serde/model_serializer.py,sha256=2vi4MoUHZV-V-4r1OWD5YJzwARFqIBv7-oyGeXGhrK4,43197
|
562
565
|
ads/model/service/__init__.py,sha256=xMyuwB5xsIEW9MFmvyjmF1YnRarsIjeFe2Ib-aprCG4,210
|
563
|
-
ads/model/service/oci_datascience_model.py,sha256=
|
566
|
+
ads/model/service/oci_datascience_model.py,sha256=gyaFcFC9-yVjAd8pgV0bJ1X7-giZuHSutpxMjsYwz7o,38765
|
564
567
|
ads/model/service/oci_datascience_model_deployment.py,sha256=ONiogPK_wN7omxdnTMAcJhcvDEZQwI_XqmT84Q1xoj0,18472
|
565
568
|
ads/model/service/oci_datascience_model_version_set.py,sha256=lYw9BauH4BNZk2Jdf8mRjFO3MorQDSMPAxkP-inlwiM,5690
|
566
569
|
ads/model/transformer/__init__.py,sha256=yBa9sP_49XF0GDWWG-u1Q5ry-vXfmO61oUjNp7mdN74,204
|
@@ -722,7 +725,7 @@ ads/opctl/operator/lowcode/forecast/model/arima.py,sha256=PvHoTdDr6RIC4I-YLzed91
|
|
722
725
|
ads/opctl/operator/lowcode/forecast/model/automlx.py,sha256=2M1Ipnq73x-bnKg9ju4Oyi9-0WxmdrCNWgAACob1HRI,21488
|
723
726
|
ads/opctl/operator/lowcode/forecast/model/autots.py,sha256=UThBBGsEiC3WLSn-BPAuNWT_ZFa3bYMu52keB0vvSt8,13137
|
724
727
|
ads/opctl/operator/lowcode/forecast/model/base_model.py,sha256=s9WwPpo61YY7teAcmL2MK7cl1GGYAKZu7IkxoReD1I0,35969
|
725
|
-
ads/opctl/operator/lowcode/forecast/model/factory.py,sha256=
|
728
|
+
ads/opctl/operator/lowcode/forecast/model/factory.py,sha256=5a9A3ql-bU412BiTB20ob6OxQlkdk8z_tGONMwDXT1k,3900
|
726
729
|
ads/opctl/operator/lowcode/forecast/model/forecast_datasets.py,sha256=2NsWE2WtD_O7uAXw42_3tmG3vb5lk3mdnzCZTph4hao,18903
|
727
730
|
ads/opctl/operator/lowcode/forecast/model/ml_forecast.py,sha256=t5x6EBxOd7XwfT3FGdt-n9gscxaHMm3R2A4Evvxbj38,9646
|
728
731
|
ads/opctl/operator/lowcode/forecast/model/neuralprophet.py,sha256=60nfNGxjRDsD09Sg7s1YG8G8Qxfcyw0_2rW2PcNy1-c,20021
|
@@ -849,8 +852,8 @@ ads/type_discovery/unknown_detector.py,sha256=yZuYQReO7PUyoWZE7onhhtYaOg6088wf1y
|
|
849
852
|
ads/type_discovery/zipcode_detector.py,sha256=3AlETg_ZF4FT0u914WXvTT3F3Z6Vf51WiIt34yQMRbw,1421
|
850
853
|
ads/vault/__init__.py,sha256=x9tMdDAOdF5iDHk9u2di_K-ze5Nq068x25EWOBoWwqY,245
|
851
854
|
ads/vault/vault.py,sha256=hFBkpYE-Hfmzu1L0sQwUfYcGxpWmgG18JPndRl0NOXI,8624
|
852
|
-
oracle_ads-2.13.
|
853
|
-
oracle_ads-2.13.
|
854
|
-
oracle_ads-2.13.
|
855
|
-
oracle_ads-2.13.
|
856
|
-
oracle_ads-2.13.
|
855
|
+
oracle_ads-2.13.5.dist-info/entry_points.txt,sha256=9VFnjpQCsMORA4rVkvN8eH6D3uHjtegb9T911t8cqV0,35
|
856
|
+
oracle_ads-2.13.5.dist-info/licenses/LICENSE.txt,sha256=zoGmbfD1IdRKx834U0IzfFFFo5KoFK71TND3K9xqYqo,1845
|
857
|
+
oracle_ads-2.13.5.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
858
|
+
oracle_ads-2.13.5.dist-info/METADATA,sha256=X_fCTf7Z5NMzhSK-j-O9ikinJQ6WMydYIZyfJO7TfPE,16639
|
859
|
+
oracle_ads-2.13.5.dist-info/RECORD,,
|