oracle-ads 2.12.1__py3-none-any.whl → 2.12.3__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 (43) hide show
  1. ads/aqua/common/enums.py +9 -0
  2. ads/aqua/common/utils.py +83 -6
  3. ads/aqua/config/config.py +0 -15
  4. ads/aqua/constants.py +2 -0
  5. ads/aqua/extension/deployment_handler.py +2 -0
  6. ads/aqua/extension/finetune_handler.py +1 -2
  7. ads/aqua/extension/ui_handler.py +22 -3
  8. ads/aqua/finetuning/entities.py +5 -4
  9. ads/aqua/finetuning/finetuning.py +13 -8
  10. ads/aqua/model/constants.py +1 -0
  11. ads/aqua/model/entities.py +2 -0
  12. ads/aqua/model/model.py +223 -138
  13. ads/aqua/modeldeployment/deployment.py +106 -62
  14. ads/aqua/modeldeployment/entities.py +10 -2
  15. ads/aqua/ui.py +29 -16
  16. ads/config.py +3 -8
  17. ads/llm/deploy.py +6 -0
  18. ads/llm/guardrails/base.py +0 -1
  19. ads/llm/langchain/plugins/chat_models/oci_data_science.py +118 -41
  20. ads/llm/langchain/plugins/llms/oci_data_science_model_deployment_endpoint.py +18 -14
  21. ads/llm/templates/score_chain.jinja2 +0 -1
  22. ads/model/datascience_model.py +519 -16
  23. ads/model/deployment/model_deployment.py +13 -0
  24. ads/model/deployment/model_deployment_infrastructure.py +34 -0
  25. ads/model/generic_model.py +10 -0
  26. ads/model/model_properties.py +1 -0
  27. ads/model/service/oci_datascience_model.py +28 -0
  28. ads/opctl/operator/common/data/synthetic.csv +16001 -0
  29. ads/opctl/operator/lowcode/anomaly/MLoperator +1 -0
  30. ads/opctl/operator/lowcode/anomaly/const.py +66 -1
  31. ads/opctl/operator/lowcode/anomaly/model/anomaly_merlion.py +161 -0
  32. ads/opctl/operator/lowcode/anomaly/model/autots.py +30 -15
  33. ads/opctl/operator/lowcode/anomaly/model/factory.py +15 -3
  34. ads/opctl/operator/lowcode/anomaly/model/randomcutforest.py +1 -1
  35. ads/opctl/operator/lowcode/anomaly/schema.yaml +10 -0
  36. ads/opctl/operator/lowcode/anomaly/utils.py +3 -0
  37. {oracle_ads-2.12.1.dist-info → oracle_ads-2.12.3.dist-info}/METADATA +2 -1
  38. {oracle_ads-2.12.1.dist-info → oracle_ads-2.12.3.dist-info}/RECORD +41 -41
  39. ads/aqua/config/deployment_config_defaults.json +0 -37
  40. ads/aqua/config/resource_limit_names.json +0 -8
  41. {oracle_ads-2.12.1.dist-info → oracle_ads-2.12.3.dist-info}/LICENSE.txt +0 -0
  42. {oracle_ads-2.12.1.dist-info → oracle_ads-2.12.3.dist-info}/WHEEL +0 -0
  43. {oracle_ads-2.12.1.dist-info → oracle_ads-2.12.3.dist-info}/entry_points.txt +0 -0
@@ -1,37 +0,0 @@
1
- {
2
- "configuration": {
3
- "VM.Standard.A1.Flex": {
4
- "parameters": {},
5
- "shape_info": {
6
- "configs": [
7
- {
8
- "memory_in_gbs": 128,
9
- "ocpu": 20
10
- },
11
- {
12
- "memory_in_gbs": 256,
13
- "ocpu": 40
14
- },
15
- {
16
- "memory_in_gbs": 384,
17
- "ocpu": 60
18
- },
19
- {
20
- "memory_in_gbs": 512,
21
- "ocpu": 80
22
- }
23
- ],
24
- "type": "CPU"
25
- }
26
- }
27
- },
28
- "shape": [
29
- "VM.GPU.A10.1",
30
- "VM.GPU.A10.2",
31
- "BM.GPU.A10.4",
32
- "BM.GPU4.8",
33
- "BM.GPU.A100-v2.8",
34
- "BM.GPU.H100.8",
35
- "VM.Standard.A1.Flex"
36
- ]
37
- }
@@ -1,8 +0,0 @@
1
- {
2
- "BM.GPU.A10.4": "ds-gpu-a10-count",
3
- "BM.GPU.A100-v2.8": "ds-gpu-a100-v2-count",
4
- "BM.GPU.H100.8": "ds-gpu-h100-count",
5
- "BM.GPU4.8": "ds-gpu4-count",
6
- "VM.GPU.A10.1": "ds-gpu-a10-count",
7
- "VM.GPU.A10.2": "ds-gpu-a10-count"
8
- }