oracle-ads 2.13.4__py3-none-any.whl → 2.13.6__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 +17 -0
- ads/aqua/common/utils.py +143 -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 +247 -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/dataset/recommendation.py +11 -20
- ads/opctl/operator/lowcode/pii/model/report.py +9 -16
- ads/opctl/utils.py +1 -1
- {oracle_ads-2.13.4.dist-info → oracle_ads-2.13.6.dist-info}/METADATA +1 -1
- {oracle_ads-2.13.4.dist-info → oracle_ads-2.13.6.dist-info}/RECORD +31 -28
- {oracle_ads-2.13.4.dist-info → oracle_ads-2.13.6.dist-info}/WHEEL +0 -0
- {oracle_ads-2.13.4.dist-info → oracle_ads-2.13.6.dist-info}/entry_points.txt +0 -0
- {oracle_ads-2.13.4.dist-info → oracle_ads-2.13.6.dist-info}/licenses/LICENSE.txt +0 -0
ads/dataset/recommendation.py
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
|
-
# -*- coding: utf-8; -*-
|
3
2
|
|
4
|
-
# Copyright (c) 2020,
|
3
|
+
# Copyright (c) 2020, 2025 Oracle and/or its affiliates.
|
5
4
|
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
|
6
5
|
|
7
6
|
import copy
|
8
7
|
import importlib
|
9
8
|
|
10
9
|
from ads.common.decorator.runtime_dependency import (
|
11
|
-
runtime_dependency,
|
12
10
|
OptionalDependency,
|
11
|
+
runtime_dependency,
|
13
12
|
)
|
14
13
|
from ads.dataset import logger
|
15
14
|
|
@@ -59,11 +58,10 @@ class Recommendation:
|
|
59
58
|
if change["type"] == "change" and change["name"] == "value":
|
60
59
|
if change["new"] == "Fill missing values with constant":
|
61
60
|
self._show_constant_fill_widget(column)
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
text.close()
|
61
|
+
elif change["old"] == "Fill missing values with constant":
|
62
|
+
text = self.fill_nan_dict.pop(column, None)
|
63
|
+
if text is not None:
|
64
|
+
text.close()
|
67
65
|
self.reco_dict[recommendation_type][column]["Selected Action"] = change[
|
68
66
|
"new"
|
69
67
|
]
|
@@ -151,7 +149,6 @@ class Recommendation:
|
|
151
149
|
@runtime_dependency(module="IPython", install_from=OptionalDependency.NOTEBOOK)
|
152
150
|
@runtime_dependency(module="ipywidgets", install_from=OptionalDependency.NOTEBOOK)
|
153
151
|
def _display(self):
|
154
|
-
|
155
152
|
from IPython.core.display import display
|
156
153
|
|
157
154
|
if self.recommendation_type_index != len(self.recommendation_types):
|
@@ -164,11 +161,7 @@ class Recommendation:
|
|
164
161
|
]
|
165
162
|
if self.recommendation_type_index == 0:
|
166
163
|
for column in recommendation:
|
167
|
-
print(
|
168
|
-
"Column '{0}' is constant and will be dropped".format(
|
169
|
-
column
|
170
|
-
)
|
171
|
-
)
|
164
|
+
print(f"Column '{column}' is constant and will be dropped")
|
172
165
|
self.recommendation_type_index += 1
|
173
166
|
self._display()
|
174
167
|
return
|
@@ -184,9 +177,9 @@ class Recommendation:
|
|
184
177
|
self.recommendation_type_labels[
|
185
178
|
self.recommendation_type_index
|
186
179
|
]
|
187
|
-
)
|
180
|
+
),
|
181
|
+
layout=ipywidgets.Layout(display="flex"),
|
188
182
|
),
|
189
|
-
layout=ipywidgets.Layout(display="flex"),
|
190
183
|
)
|
191
184
|
self.action_list[
|
192
185
|
self.recommendation_types[self.recommendation_type_index]
|
@@ -194,7 +187,7 @@ class Recommendation:
|
|
194
187
|
self.column_list = []
|
195
188
|
self.message_list = []
|
196
189
|
self.extra_info_list = []
|
197
|
-
for column in recommendation
|
190
|
+
for column in recommendation:
|
198
191
|
messages = ipywidgets.Label(
|
199
192
|
recommendation[column]["Message"],
|
200
193
|
layout=ipywidgets.Layout(
|
@@ -240,9 +233,7 @@ class Recommendation:
|
|
240
233
|
self.column_list.append(
|
241
234
|
ipywidgets.Label(
|
242
235
|
column
|
243
|
-
+ "(type: {
|
244
|
-
self.ds.sampled_df[column].dtype
|
245
|
-
),
|
236
|
+
+ f"(type: {self.ds.sampled_df[column].dtype})",
|
246
237
|
layout=ipywidgets.Layout(flex="auto"),
|
247
238
|
color="grey",
|
248
239
|
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
|
3
|
-
# Copyright (c) 2023,
|
3
|
+
# Copyright (c) 2023, 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
|
|
@@ -123,7 +123,6 @@ def make_model_card(model_name="", readme_path=""):
|
|
123
123
|
)
|
124
124
|
return rc.Group(
|
125
125
|
rc.Text("-"),
|
126
|
-
columns=1,
|
127
126
|
)
|
128
127
|
|
129
128
|
try:
|
@@ -156,7 +155,6 @@ def make_model_card(model_name="", readme_path=""):
|
|
156
155
|
return rc.Group(
|
157
156
|
rc.Text(text),
|
158
157
|
eval_res_tb,
|
159
|
-
columns=2,
|
160
158
|
)
|
161
159
|
|
162
160
|
|
@@ -216,7 +214,7 @@ def build_entity_df(entites, id) -> pd.DataFrame:
|
|
216
214
|
"Type": "-",
|
217
215
|
"Redacted To": "-",
|
218
216
|
}
|
219
|
-
df = df.
|
217
|
+
df = pd.concat([df, pd.DataFrame([df2])], ignore_index=True)
|
220
218
|
return df
|
221
219
|
|
222
220
|
|
@@ -232,7 +230,6 @@ class RowReportFields:
|
|
232
230
|
self._make_stats_card(),
|
233
231
|
self._make_text_card(),
|
234
232
|
],
|
235
|
-
type=rc.SelectType.TABS,
|
236
233
|
),
|
237
234
|
label="Row Id: " + str(self.spec.id),
|
238
235
|
)
|
@@ -256,7 +253,7 @@ class RowReportFields:
|
|
256
253
|
index=True,
|
257
254
|
)
|
258
255
|
)
|
259
|
-
return rc.Group(stats, label="STATS")
|
256
|
+
return rc.Group(*stats, label="STATS")
|
260
257
|
|
261
258
|
def _make_text_card(self):
|
262
259
|
annotations = []
|
@@ -277,7 +274,7 @@ class RowReportFields:
|
|
277
274
|
},
|
278
275
|
return_html=True,
|
279
276
|
)
|
280
|
-
return rc.Group(rc.
|
277
|
+
return rc.Group(rc.Html(render_html), label="TEXT")
|
281
278
|
|
282
279
|
|
283
280
|
class PIIOperatorReport:
|
@@ -292,7 +289,7 @@ class PIIOperatorReport:
|
|
292
289
|
RowReportFields(r, report_spec.run_summary.show_sensitive_info)
|
293
290
|
for r in rows
|
294
291
|
]
|
295
|
-
|
292
|
+
self.report_sections = None
|
296
293
|
self.report_uri = report_uri
|
297
294
|
|
298
295
|
def make_view(self):
|
@@ -317,7 +314,6 @@ class PIIOperatorReport:
|
|
317
314
|
label="Details",
|
318
315
|
),
|
319
316
|
],
|
320
|
-
type=rc.SelectType.TABS,
|
321
317
|
)
|
322
318
|
)
|
323
319
|
self.report_sections = [title_text, report_description, time_proceed, structure]
|
@@ -331,7 +327,8 @@ class PIIOperatorReport:
|
|
331
327
|
disable_print()
|
332
328
|
with rc.ReportCreator("My Report") as report:
|
333
329
|
report.save(
|
334
|
-
rc.Block(report_sections or self.report_sections),
|
330
|
+
rc.Block(*(report_sections or self.report_sections)),
|
331
|
+
report_local_path,
|
335
332
|
)
|
336
333
|
enable_print()
|
337
334
|
|
@@ -354,7 +351,6 @@ class PIIOperatorReport:
|
|
354
351
|
self._make_yaml_card(),
|
355
352
|
self._make_model_card(),
|
356
353
|
],
|
357
|
-
type=rc.SelectType.TABS,
|
358
354
|
),
|
359
355
|
)
|
360
356
|
|
@@ -367,7 +363,6 @@ class PIIOperatorReport:
|
|
367
363
|
blocks=[
|
368
364
|
row.build_report() for row in self.rows_details
|
369
365
|
], # RowReportFields
|
370
|
-
type=rc.SelectType.DROPDOWN,
|
371
366
|
label="Details",
|
372
367
|
),
|
373
368
|
)
|
@@ -414,7 +409,6 @@ class PIIOperatorReport:
|
|
414
409
|
self.report_spec.run_summary.elapsed_time
|
415
410
|
),
|
416
411
|
),
|
417
|
-
columns=2,
|
418
412
|
),
|
419
413
|
rc.Heading("Entities Distribution", level=3),
|
420
414
|
plot_pie(self.report_spec.run_summary.statics),
|
@@ -423,7 +417,7 @@ class PIIOperatorReport:
|
|
423
417
|
entites_df = self._build_total_entity_df()
|
424
418
|
summary_stats.append(rc.Heading("Resolved Entities", level=3))
|
425
419
|
summary_stats.append(rc.DataTable(entites_df, index=True))
|
426
|
-
return rc.Group(summary_stats, label="STATS")
|
420
|
+
return rc.Group(*summary_stats, label="STATS")
|
427
421
|
|
428
422
|
def _make_yaml_card(self) -> rc.Group:
|
429
423
|
"""Shows the full pii config yaml."""
|
@@ -449,13 +443,12 @@ class PIIOperatorReport:
|
|
449
443
|
|
450
444
|
if len(model_cards) <= 1:
|
451
445
|
return rc.Group(
|
452
|
-
model_cards,
|
446
|
+
*model_cards,
|
453
447
|
label="MODEL CARD",
|
454
448
|
)
|
455
449
|
return rc.Group(
|
456
450
|
rc.Select(
|
457
451
|
model_cards,
|
458
|
-
type=rc.SelectType.TABS,
|
459
452
|
),
|
460
453
|
label="MODEL CARD",
|
461
454
|
)
|
ads/opctl/utils.py
CHANGED
@@ -154,7 +154,7 @@ def build_image(image_type: str, gpu: bool = False) -> None:
|
|
154
154
|
# Just get the manufacturer of the processors
|
155
155
|
manufacturer = cpuinfo.get_cpu_info().get("brand_raw")
|
156
156
|
arch = (
|
157
|
-
"arm" if re.search("apple m\d
|
157
|
+
"arm" if re.search("apple m\d", manufacturer, re.IGNORECASE) else "other"
|
158
158
|
)
|
159
159
|
print(f"The local machine's platform is {arch}.")
|
160
160
|
image, dockerfile, target = _get_image_name_dockerfile_target(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: oracle_ads
|
3
|
-
Version: 2.13.
|
3
|
+
Version: 2.13.6
|
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
|
@@ -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=rTZDOQzTfcgwEl7gjVY3_JotHXkz7wB_edEIB0i6AeQ,3739
|
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=OtHtGCC0gZvqNif_sfQoYp4KnZhIulv5a_gbceomIew,44238
|
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=9gl2bPyUURb3azHmtu-iZJy2-hpCQKI-NvVPAxjPuy8,79324
|
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
|
@@ -168,7 +171,7 @@ ads/dataset/label_encoder.py,sha256=JEvS7zdQRrj-hyDqLCY-tXLeROYCtdibapRWoUDXy_0,
|
|
168
171
|
ads/dataset/pipeline.py,sha256=laXu4E-ipL7UKWEeTcvJEw2ub8YYUNFUo4Taqa4eB_o,1642
|
169
172
|
ads/dataset/plot.py,sha256=8DB7brJqBJBsTFWogOxfYPYwTykFwAHFOIjA3Q8P2NE,26056
|
170
173
|
ads/dataset/progress.py,sha256=ulcjMurT0P0FKJk0-6tmUQF5clpv2VGpnD2shM2EIHA,2298
|
171
|
-
ads/dataset/recommendation.py,sha256=
|
174
|
+
ads/dataset/recommendation.py,sha256=lxVN9ThG2Mjs9aSLbVRxx_lWJ1U3kFZEN5QoqMiY-aw,12633
|
172
175
|
ads/dataset/recommendation_transformer.py,sha256=ijt7EnG65vUuuMgfMH6gRE-kSVXtXoHvieFiagWg05U,22159
|
173
176
|
ads/dataset/regression_dataset.py,sha256=KYoxzhn7kPXSUFX_QDDC4eSHP-3rAC3Y-2BHj-L28Zo,562
|
174
177
|
ads/dataset/sampled_dataset.py,sha256=rvmQagFVDXZXtmUw_ugKO1cDL4sOZfqvsG033PnxXR4,39566
|
@@ -576,7 +579,7 @@ ads/opctl/forecast.py,sha256=ZInj8FyXHkdjiEmXDc-jH1xT7JAGHEKwP0Lnq39xWGQ,418
|
|
576
579
|
ads/opctl/index.yaml,sha256=cf9j3VXcNY-DvFlAZQLZj8-hA9QArWlirPtN1sRKqyM,68
|
577
580
|
ads/opctl/schema.yaml.yml,sha256=L4eoHVFLu5tHPDOD53-dVGbscKkXG86i4IbRX-bVL2g,546
|
578
581
|
ads/opctl/script.py,sha256=3AgTOjDnvmheu4ROrn56d38h8wZVOZwne_ix2x3U6bY,1181
|
579
|
-
ads/opctl/utils.py,sha256=
|
582
|
+
ads/opctl/utils.py,sha256=QL0TmdVdP9Cywwqt8pF7mcpJpG0tLfc8A9M6X_sb20U,10671
|
580
583
|
ads/opctl/backend/__init__.py,sha256=DwYupQz6SOfMLmmAjJ9danchK0shQRJKTGPU--naQgY,204
|
581
584
|
ads/opctl/backend/ads_dataflow.py,sha256=XHk6OEcaWPU6vRvvRMqROiN8PriFKx_5Gvu6cz6pZas,13031
|
582
585
|
ads/opctl/backend/ads_ml_job.py,sha256=Wwt2uiehi7ulkoPlhb4k5UeqYw1Y56Y_ANhGw5G5zP8,27834
|
@@ -745,7 +748,7 @@ ads/opctl/operator/lowcode/pii/model/__init__.py,sha256=sAqmLhogrLXb3xI7dPOj9HmS
|
|
745
748
|
ads/opctl/operator/lowcode/pii/model/factory.py,sha256=mM-xifHwVa1tGHcTcvgySUrGsPmIqmOavf8i_dVbkRQ,2502
|
746
749
|
ads/opctl/operator/lowcode/pii/model/guardrails.py,sha256=--GUFt-zlVyJY5WQZNMHjQDlVfVy-tYeXubgvYN-H-U,6246
|
747
750
|
ads/opctl/operator/lowcode/pii/model/pii.py,sha256=hbOomsCNgj7uZNOdUIja3rE-iTGhh9P2hKh8xrtpXR4,5110
|
748
|
-
ads/opctl/operator/lowcode/pii/model/report.py,sha256=
|
751
|
+
ads/opctl/operator/lowcode/pii/model/report.py,sha256=8D24DlDHPy_FRNUzFkKN7iTFH-974xiJ48rzUWsUsd8,16167
|
749
752
|
ads/opctl/operator/lowcode/pii/model/processor/__init__.py,sha256=febfGPoGJXTD-hCJoiVmsnBP3K3MYBqfuQoTNPm_4kY,910
|
750
753
|
ads/opctl/operator/lowcode/pii/model/processor/email_replacer.py,sha256=sTjMbP8UfwszrzFI0QgzZ0BwWfVqYxhWJ1z8S5AcE2U,996
|
751
754
|
ads/opctl/operator/lowcode/pii/model/processor/mbi_replacer.py,sha256=nm4dRZjFwxraktXTR1FConaAH4o1uagiXMVeGU0H0O0,1025
|
@@ -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.6.dist-info/entry_points.txt,sha256=9VFnjpQCsMORA4rVkvN8eH6D3uHjtegb9T911t8cqV0,35
|
856
|
+
oracle_ads-2.13.6.dist-info/licenses/LICENSE.txt,sha256=zoGmbfD1IdRKx834U0IzfFFFo5KoFK71TND3K9xqYqo,1845
|
857
|
+
oracle_ads-2.13.6.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
858
|
+
oracle_ads-2.13.6.dist-info/METADATA,sha256=r07qyuquzLOV4t2OloGNRKDEgdbwifVB6v6viXCK7oI,16639
|
859
|
+
oracle_ads-2.13.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|