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.
Files changed (32) hide show
  1. ads/aqua/app.py +6 -0
  2. ads/aqua/client/openai_client.py +305 -0
  3. ads/aqua/common/entities.py +224 -2
  4. ads/aqua/common/enums.py +3 -0
  5. ads/aqua/common/utils.py +105 -3
  6. ads/aqua/config/container_config.py +9 -0
  7. ads/aqua/constants.py +29 -1
  8. ads/aqua/evaluation/entities.py +6 -1
  9. ads/aqua/evaluation/evaluation.py +191 -7
  10. ads/aqua/extension/aqua_ws_msg_handler.py +6 -36
  11. ads/aqua/extension/base_handler.py +13 -71
  12. ads/aqua/extension/deployment_handler.py +67 -76
  13. ads/aqua/extension/errors.py +19 -0
  14. ads/aqua/extension/utils.py +114 -2
  15. ads/aqua/finetuning/finetuning.py +50 -1
  16. ads/aqua/model/constants.py +3 -0
  17. ads/aqua/model/enums.py +5 -0
  18. ads/aqua/model/model.py +236 -24
  19. ads/aqua/modeldeployment/deployment.py +671 -152
  20. ads/aqua/modeldeployment/entities.py +551 -42
  21. ads/aqua/modeldeployment/inference.py +4 -5
  22. ads/aqua/modeldeployment/utils.py +525 -0
  23. ads/aqua/resources/gpu_shapes_index.json +94 -0
  24. ads/common/utils.py +1 -17
  25. ads/model/datascience_model.py +81 -21
  26. ads/model/service/oci_datascience_model.py +50 -42
  27. ads/opctl/operator/lowcode/forecast/model/factory.py +8 -1
  28. {oracle_ads-2.13.3.dist-info → oracle_ads-2.13.5.dist-info}/METADATA +8 -4
  29. {oracle_ads-2.13.3.dist-info → oracle_ads-2.13.5.dist-info}/RECORD +32 -29
  30. {oracle_ads-2.13.3.dist-info → oracle_ads-2.13.5.dist-info}/WHEEL +1 -1
  31. {oracle_ads-2.13.3.dist-info → oracle_ads-2.13.5.dist-info}/entry_points.txt +0 -0
  32. {oracle_ads-2.13.3.dist-info → oracle_ads-2.13.5.dist-info}/licenses/LICENSE.txt +0 -0
@@ -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 upload. It can also be the actual content of the custom metadata
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
- Can be either local , oss or the actual content itself
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
- artifact_path=artifact_path_or_content,
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 upload. It can also be the actual content of the defined metadata
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
- artifact_path=artifact_path_or_content,
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
- artifact_path=artifact_path_or_content,
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
- artifact_path=artifact_path_or_content,
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 os.path.exists(artifact_file_path):
2446
- raise FileExistsError(f"File already exists: {artifact_file_path}")
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 os.path.exists(artifact_file_path):
2485
- raise FileExistsError(f"File already exists: {artifact_file_path}")
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, 2024 Oracle and/or its affiliates.
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, text_sanitizer
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, artifact_path_or_content: str, path_type: MetadataArtifactPathType
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
- metadata artifact content
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 path_type == MetadataArtifactPathType.LOCAL:
645
- if not utils.is_path_exists(artifact_path_or_content):
646
- raise FileNotFoundError(
647
- f"File not found: {artifact_path_or_content} . "
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
- contents = str(
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
- artifact_path: str,
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
- artifact_path: str
684
- The model custom metadata artifact path to be upload.
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=artifact_path, path_type=path_type
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
- text_sanitizer(contents),
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
- artifact_path: str,
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
- artifact_path: str
737
- The model custom metadata artifact path to be upload.
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=artifact_path, path_type=path_type
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
- text_sanitizer(contents),
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
- artifact_path: str,
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
- artifact_path: str
790
- The model defined metadata artifact path to be upload.
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=artifact_path, path_type=path_type
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
- text_sanitizer(contents),
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
- artifact_path: str,
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
- artifact_path: str
842
- The model custom metadata artifact path to be upload.
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=artifact_path, path_type=path_type
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
- text_sanitizer(contents),
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
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=_LrDKMR0SSxPEylIMPTsJvXnSnJFDud_MS3tMO25RMo,14360
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=bdBBafATGl5rYHjZ2i9jZPDKFab8nWjzjJKA2DFgIDc,3019
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=tBGUqetIByaU6Q0UqaAfN8I74RGADC7UjObH9jvfNWU,1315
15
- ads/aqua/common/enums.py,sha256=PNcmv032exzP8XsfUwidYCxNP0GW8G39XGeUNV-jbmI,3032
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=aY1tUkLrhbYDhFRYPaiVi12AllST_VS_FRosK-dIdyQ,39294
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=QyLyYB9hv9g87-kA7Scg6Mxlebi7-dxaaT315MCqrqY,8059
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=pvZWrO-Hlsh0TIFnly84OijKHULRVM13D5a-4ZGxte8,5733
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=Q8822M1asVpBdw5e2LmN1B-vI3k8SdT-44nGQI0d4YI,59510
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=zR7Fb3LEXzPrEICooWvuo_ahoY6KhcABpKUmYQkEpS0,3626
36
- ads/aqua/extension/base_handler.py,sha256=gK3YBBrkbG__0eAq49zHRmJKJXp-lvEOYdYlDuxWPpM,5475
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=abTwz9OFJB2_OPbRZaDvNMb3BjRmkSmNh28EtGNstg4,11287
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=ojDolyr3_0UCCwKqPtiZZyMQuX35jr8h8MQRP6HcBs4,519
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=UKafTX6tN6ObOkWCLy6c3y_cNmUHfD64PtIaR5B7Sl0,1476
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=-re_K9wR46_EbENddUEefNrnYd5IlR0GotUa_kkgXU8,26302
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=pI_oHKSLJvt3dOC4hdkj75Y3CJqK9yW3AT1kHyDfPTI,1500
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=DLVNt0PohWMGawf9l5DBEc8LnSJDTeVdDuGD-IOZ-Qk,944
60
- ads/aqua/model/model.py,sha256=agUsPLCTO91fK9D8n02wrigocPeFLyC4r-6yI687pbY,70176
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=G1noH-1mNrNB5MLpjAPcJOEwgV1X7IlF-fvWWOQ5QF0,31746
64
- ads/aqua/modeldeployment/entities.py,sha256=onHi_nvul_wOZWLiSPsCsNgaWNnSNBjVUqQSkxL37i8,5343
65
- ads/aqua/modeldeployment/inference.py,sha256=JPqzbHJoM-PpIU_Ft9lHudO9_1vFr7OPQ2GHjPoAufU,2142
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=dXVf3QEtlS0YE_vA7xbtCc0A5MmSnODoeBSx_4q8VwU,54317
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=mcbOmjhFLfs3ko5corYZ_MnJuSv-0gXKs6LNbdACfsA,94593
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=5RTf8jSAxR7aMjNBjvk1INb3fVJbuhV5L0nbzJv-_lM,37999
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=hSRPPWdpIRSMYPUFMIUuxc2TPZt-SG18MiqhtdfL3mg,3488
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.3.dist-info/entry_points.txt,sha256=9VFnjpQCsMORA4rVkvN8eH6D3uHjtegb9T911t8cqV0,35
853
- oracle_ads-2.13.3.dist-info/licenses/LICENSE.txt,sha256=zoGmbfD1IdRKx834U0IzfFFFo5KoFK71TND3K9xqYqo,1845
854
- oracle_ads-2.13.3.dist-info/WHEEL,sha256=_2ozNFCLWc93bK4WKHCO-eDUENDlo-dgc9cU3qokYO4,82
855
- oracle_ads-2.13.3.dist-info/METADATA,sha256=sFqtvGBYnP_WSLQ_-qjVCHDTOJ-oAd8ekjPkGIwtHq4,16258
856
- oracle_ads-2.13.3.dist-info/RECORD,,
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,,