azureml-core 1.58.0.post1__py3-none-any.whl → 1.59.0.post1__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.
- azureml/_base_sdk_common/_version.py +1 -1
- azureml/_project/azureml_base_images.json +7 -7
- azureml/core/_metrics.py +2 -2
- azureml/core/model.py +1 -0
- azureml/core/runconfig.py +1 -0
- {azureml_core-1.58.0.post1.dist-info → azureml_core-1.59.0.post1.dist-info}/METADATA +13 -4
- {azureml_core-1.58.0.post1.dist-info → azureml_core-1.59.0.post1.dist-info}/RECORD +11 -11
- {azureml_core-1.58.0.post1.dist-info → azureml_core-1.59.0.post1.dist-info}/WHEEL +1 -1
- {azureml_core-1.58.0.post1.dist-info → azureml_core-1.59.0.post1.dist-info}/LICENSE.txt +0 -0
- {azureml_core-1.58.0.post1.dist-info → azureml_core-1.59.0.post1.dist-info}/entry_points.txt +0 -0
- {azureml_core-1.58.0.post1.dist-info → azureml_core-1.59.0.post1.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
|
|
1
|
-
ver = "1.
|
1
|
+
ver = "1.59.0"
|
@@ -1,9 +1,9 @@
|
|
1
1
|
{
|
2
|
-
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.1-cudnn8-ubuntu20.04": "
|
3
|
-
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.2-cudnn8-ubuntu20.04": "
|
4
|
-
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04": "
|
5
|
-
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.6-cudnn8-ubuntu20.04": "
|
6
|
-
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04": "
|
7
|
-
"mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04": "
|
8
|
-
"mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04": "
|
2
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.1-cudnn8-ubuntu20.04": "20250121.v1",
|
3
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.2-cudnn8-ubuntu20.04": "20250121.v1",
|
4
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04": "20250121.v1",
|
5
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.6-cudnn8-ubuntu20.04": "20250121.v1",
|
6
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04": "20250121.v1",
|
7
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04": "20250121.v1",
|
8
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04": "20250121.v1"
|
9
9
|
}
|
azureml/core/_metrics.py
CHANGED
@@ -216,8 +216,8 @@ class Metric(ChainedIdentity):
|
|
216
216
|
_type_to_converter[np.str_] = str
|
217
217
|
|
218
218
|
# Add int type support
|
219
|
-
numpy_ints = [np.
|
220
|
-
numpy_unsigned_ints = [np.
|
219
|
+
numpy_ints = [np.int8, np.int16, np.int16, np.int32]
|
220
|
+
numpy_unsigned_ints = [np.uint8, np.uint8, np.uint16, np.uint32]
|
221
221
|
|
222
222
|
for numpy_int_type in numpy_ints + numpy_unsigned_ints:
|
223
223
|
_type_to_converter[numpy_int_type] = int
|
azureml/core/model.py
CHANGED
@@ -663,6 +663,7 @@ class Model(object):
|
|
663
663
|
file_names = set()
|
664
664
|
|
665
665
|
for child_path in child_paths:
|
666
|
+
child_path = os.path.normpath(child_path)
|
666
667
|
child_full_path = os.path.abspath(os.path.join(model_path, child_path))
|
667
668
|
# CodeQL [SM01305] untrusted data is validated before being used in the path
|
668
669
|
if os.path.isdir(child_full_path):
|
azureml/core/runconfig.py
CHANGED
@@ -1443,6 +1443,7 @@ class RunConfiguration(_AbstractRunConfigElement):
|
|
1443
1443
|
else:
|
1444
1444
|
path = os.getcwd()
|
1445
1445
|
|
1446
|
+
path = os.path.normpath(path)
|
1446
1447
|
# True if the specified path is a project directory. False if the path specified is a file.
|
1447
1448
|
project_dir_case = True
|
1448
1449
|
if os.path.exists(path) and os.path.isdir(path):
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: azureml-core
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.59.0.post1
|
4
4
|
Summary: Azure Machine Learning core packages, modules, and classes
|
5
5
|
Home-page: https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py
|
6
6
|
Author: Microsoft Corp
|
@@ -34,7 +34,7 @@ Requires-Dist: azure-mgmt-containerregistry<11,>=8.2.0
|
|
34
34
|
Requires-Dist: azure-mgmt-storage<=22.0.0,>=16.0.0
|
35
35
|
Requires-Dist: azure-mgmt-keyvault<11.0.0,>=0.40.0
|
36
36
|
Requires-Dist: azure-mgmt-authorization<5,>=0.40.0
|
37
|
-
Requires-Dist: azure-mgmt-network<=
|
37
|
+
Requires-Dist: azure-mgmt-network<=29.0.0
|
38
38
|
Requires-Dist: azure-graphrbac<1.0.0,>=0.40.0
|
39
39
|
Requires-Dist: azure-common<2.0.0,>=1.1.12
|
40
40
|
Requires-Dist: msrest<=0.7.1,>=0.5.1
|
@@ -44,13 +44,22 @@ Requires-Dist: packaging<=25.0,>=20.0
|
|
44
44
|
Requires-Dist: python-dateutil<3.0.0,>=2.7.3
|
45
45
|
Requires-Dist: ndg-httpsclient<=0.5.1
|
46
46
|
Requires-Dist: SecretStorage<4.0.0
|
47
|
-
Requires-Dist: jsonpickle<
|
47
|
+
Requires-Dist: jsonpickle<5.0.0
|
48
48
|
Requires-Dist: contextlib2<22.0.0
|
49
49
|
Requires-Dist: docker<8.0.0
|
50
50
|
Requires-Dist: PyJWT<3.0.0
|
51
51
|
Requires-Dist: adal<=1.2.7,>=1.2.0
|
52
52
|
Requires-Dist: pyopenssl<25.0.0
|
53
53
|
Requires-Dist: jmespath<2.0.0
|
54
|
+
Dynamic: author
|
55
|
+
Dynamic: classifier
|
56
|
+
Dynamic: description
|
57
|
+
Dynamic: description-content-type
|
58
|
+
Dynamic: home-page
|
59
|
+
Dynamic: license
|
60
|
+
Dynamic: requires-dist
|
61
|
+
Dynamic: requires-python
|
62
|
+
Dynamic: summary
|
54
63
|
|
55
64
|
|
56
65
|
The azureml-core provides core packages, modules, and classes for Azure Machine Learning and includes the following:
|
@@ -8,7 +8,7 @@ azureml/_async/worker_pool.py,sha256=L0wPG7JskcjmgCfcIruIyk71pRkL0HbcTritBdcC2rk
|
|
8
8
|
azureml/_base_sdk_common/__init__.py,sha256=E04eAB1KyV8xIhdRtGDe2IaYMteRQ194h7Pem5ic8Kg,356
|
9
9
|
azureml/_base_sdk_common/_arcadia_token_wrapper.py,sha256=4dMGzRM6pdQiz7BI6PvcW2_pjs3t7lsZck39AiOvmbw,2112
|
10
10
|
azureml/_base_sdk_common/_docstring_wrapper.py,sha256=haPzBtUqTgx4gipecCMggR_pHBaMiUmlkZj-fUHo1do,3390
|
11
|
-
azureml/_base_sdk_common/_version.py,sha256=
|
11
|
+
azureml/_base_sdk_common/_version.py,sha256=bE5CSlrSxu544XGXeH9RM-gCmaSd1lzRoASWKGWfOhE,16
|
12
12
|
azureml/_base_sdk_common/abstract_run_config_element.py,sha256=TTTVNWr17ss1AuWkKPFXgVzcGQt11QlEJ2weIsIZ5qc,1190
|
13
13
|
azureml/_base_sdk_common/auth_utils.py,sha256=c7jiAw_u70xU7HymEgtiGvqch8OqfoGzLW6Mdjuo9Lo,2512
|
14
14
|
azureml/_base_sdk_common/common.py,sha256=oBQrzsb56zjFhLD1OMIfNXNLeVb_wdinDtOebwk9qLI,27836
|
@@ -247,7 +247,7 @@ azureml/_model_management/data/mms_workspace_image_payload_template.json,sha256=
|
|
247
247
|
azureml/_project/__init__.py,sha256=fXk56x7HrgsyVMGN5yuE08JN9x0JszBhsBNBX5NOneY,412
|
248
248
|
azureml/_project/_commands.py,sha256=gUNeO7UoxFDplcm5dT68t2pAL_rTKRY8_0oZIS0O_ec,39864
|
249
249
|
azureml/_project/_compute_target_commands.py,sha256=9tEnGkChnFAWvj1xAQHgFd39QOS_Vf2aZYT8DvOYh_w,13262
|
250
|
-
azureml/_project/azureml_base_images.json,sha256=
|
250
|
+
azureml/_project/azureml_base_images.json,sha256=Hchx79M01qMsrHb1_6E4Jr-QD4wYVJw3eeBH65HtW48,601
|
251
251
|
azureml/_project/azureml_sdk_scope.txt,sha256=5YqX2w4p-GU-a9jvGMr40N5SMLE6ewyJ_plbUmdjxxE,36
|
252
252
|
azureml/_project/file_utilities.py,sha256=CYpLPh6VFsGirVUBXwKmm6pM_7TbGihKK-WfSlx1D3E,2679
|
253
253
|
azureml/_project/ignore_file.py,sha256=H19Yn2yngfAaK9Lfbz-uuHc-V-vqUhhKUv24IW_s2e8,3395
|
@@ -1172,7 +1172,7 @@ azureml/_workspace/workspacedeploy.json,sha256=YxW2BJaMcKkwJ7w-aU592HOAPLkP561_9
|
|
1172
1172
|
azureml/core/__init__.py,sha256=sLB61cIb4v168ttwc__Hjovqpxz_Hq7E7GupaNvFDJs,4381
|
1173
1173
|
azureml/core/_docs.py,sha256=Kg5aoZqaXMm_KYpTme9Ass9oHJNn-9kx-K4W-4roNEw,1890
|
1174
1174
|
azureml/core/_experiment_method.py,sha256=qaQutRXOxlSzTUikJiT2d129Q9d1OXsKml3fAcC95B8,4752
|
1175
|
-
azureml/core/_metrics.py,sha256=
|
1175
|
+
azureml/core/_metrics.py,sha256=wRITKn3QmiCS0SnlCUJpCnpzFa6OZMa0AGeeHaszank,38905
|
1176
1176
|
azureml/core/_portal.py,sha256=MvzYl-0m1M9nmorgWl7gbpHtQhkf5bL92Ul9H0pB2ds,5987
|
1177
1177
|
azureml/core/_serialization_utils.py,sha256=MnNB6Q62Wv1T1F_obbyVczkGmw1_TqgpruaSf80CWK4,12059
|
1178
1178
|
azureml/core/authentication.py,sha256=HhqjBJoTYEzaTwe9ijjHaouShy-kQBlKIH2991uqYTw,107477
|
@@ -1186,12 +1186,12 @@ azureml/core/environment.py,sha256=YF8TWgsKRdzRUNISKx383SVQQNcdmPzgpZpDoePPk9w,7
|
|
1186
1186
|
azureml/core/experiment.py,sha256=yC3lVr97RoFXFZGNb1tQUdKJTlK_88jLBjKZXeLun3Q,24537
|
1187
1187
|
azureml/core/keyvault.py,sha256=QchGc35DAimaWzdeEH-1wVatFgFFSWUgMNvtH5othIM,6602
|
1188
1188
|
azureml/core/linked_service.py,sha256=zZEu28ooMIb9fUmuKtqfmNU25GwEvqKciGpDmVoqM5Y,9547
|
1189
|
-
azureml/core/model.py,sha256=
|
1189
|
+
azureml/core/model.py,sha256=qyG-M6WeYmWLjByYCw2_rv01zXwWOgJt8kDsEPrK65U,143309
|
1190
1190
|
azureml/core/private_endpoint.py,sha256=rywS6SyNxOFz8EMXC7j3vEyN6jVSf4uTy-DPthA0D0U,6354
|
1191
1191
|
azureml/core/profile.py,sha256=YqmxLsKONfrLMwmkat7fDYYKtMA3F5N1ndnr9jIWTSc,18627
|
1192
1192
|
azureml/core/resource_configuration.py,sha256=BtHJWVf_RqeNRJddVfembTOyXrSF2Tt8EwB7DLK7ZHQ,6001
|
1193
1193
|
azureml/core/run.py,sha256=evL5bH2uCwayelN-xCCG7SR3hch3Cd8UK8uVIDiOZGM,115120
|
1194
|
-
azureml/core/runconfig.py,sha256
|
1194
|
+
azureml/core/runconfig.py,sha256=-WPTPiPNWUt6KIGURIXat1AhnLhQcrPSV5xwkrMnwY4,102387
|
1195
1195
|
azureml/core/script_run.py,sha256=S8-fvK2UkuSReoWDYZKpf4TtD4JV7MD1yPuufzOMBGI,12412
|
1196
1196
|
azureml/core/script_run_config.py,sha256=wlbVeXEsliyZ2YTbxvPFwS2W0qiVRApQrv89T5cPDZE,27688
|
1197
1197
|
azureml/core/util.py,sha256=G8Olw1seYwpkIHnaMgnh-Nb9rfXqWWhsKRUAIjnflX0,1487
|
@@ -1323,9 +1323,9 @@ azureml/exceptions/__init__.py,sha256=wAB_C_TNpL8FK6GXeygupED6mG5IfSrLx_moV7NHIp
|
|
1323
1323
|
azureml/exceptions/_azureml_exception.py,sha256=XxvMTrADJiTIHSn8DHj2fmyDUhYyBuVUqxYR3cuibz4,18989
|
1324
1324
|
azureml/history/__init__.py,sha256=8U_yD6fMdk8Ok3Z-GO_ibddTgQEB-aY6BTT8t9aYGZw,274
|
1325
1325
|
azureml/history/_tracking.py,sha256=IcZoVbHsOA01eQ3Ealnxe1YbNNnQi4LA5ccINB1cTrU,18541
|
1326
|
-
azureml_core-1.
|
1327
|
-
azureml_core-1.
|
1328
|
-
azureml_core-1.
|
1329
|
-
azureml_core-1.
|
1330
|
-
azureml_core-1.
|
1331
|
-
azureml_core-1.
|
1326
|
+
azureml_core-1.59.0.post1.dist-info/LICENSE.txt,sha256=GBoIyZ-6vJ4xjRc8U3wTw4EfkuaEdVTm_gbr1Nm8uDI,859
|
1327
|
+
azureml_core-1.59.0.post1.dist-info/METADATA,sha256=xiUg4IEepZSeE0HSc8NawJ2V_MLMUYRLZPyoGr8ECgY,3372
|
1328
|
+
azureml_core-1.59.0.post1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
1329
|
+
azureml_core-1.59.0.post1.dist-info/entry_points.txt,sha256=EKn4UdjSeleaw9lk1z12dZ7YK6tX4Ig6FYqaC2Uk8b8,154
|
1330
|
+
azureml_core-1.59.0.post1.dist-info/top_level.txt,sha256=ZOeEa0TAXo6i5wOjwBoqfIGEuxOcKuscGgNSpizqREY,8
|
1331
|
+
azureml_core-1.59.0.post1.dist-info/RECORD,,
|
File without changes
|
{azureml_core-1.58.0.post1.dist-info → azureml_core-1.59.0.post1.dist-info}/entry_points.txt
RENAMED
File without changes
|
File without changes
|