azureml-core 1.57.0__py3-none-any.whl → 1.57.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.
@@ -1,9 +1,9 @@
1
1
  {
2
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.1-cudnn8-ubuntu20.04": "20240709.v1",
3
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.2-cudnn8-ubuntu20.04": "20240709.v1",
4
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04": "20240709.v1",
5
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.6-cudnn8-ubuntu20.04": "20240709.v1",
6
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04": "20240709.v1",
7
- "mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04": "20240709.v1",
8
- "mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04": "20240709.v1"
2
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.1-cudnn8-ubuntu20.04": "20240908.v1",
3
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.2-cudnn8-ubuntu20.04": "20240908.v1",
4
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04": "20240908.v1",
5
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.6-cudnn8-ubuntu20.04": "20240908.v1",
6
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04": "20240908.v1",
7
+ "mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04": "20240908.v1",
8
+ "mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04": "20240908.v1"
9
9
  }
@@ -1,45 +1,12 @@
1
- azureml-core
2
- azureml-train
3
- azureml-sdk
4
- azureml-defaults
5
- azureml-train-core
6
- azureml-automl-core
7
- azureml-automl-runtime
8
- azureml-training-tabular
9
- azureml-train-automl
10
- azureml-train-automl-client
11
- azureml-train-automl-runtime
12
- azureml-contrib-automl-dnn-forecasting
13
- azureml-automl-dnn-vision
14
- azureml-automl-dnn-nlp
15
- azureml-contrib-automl-pipeline-steps
16
- azureml-train-restclients-hyperdrive
17
- azureml-telemetry
18
- azureml-tensorboard
19
- azureml-contrib-notebook
20
- azureml-explain-model
21
- azureml-interpret
22
- azureml-contrib-server
23
- azureml-contrib-services
24
- azureml-contrib-iot
25
- azureml-contrib-run
26
- azureml-datadrift
27
- azureml-widgets
28
- azureml-pipeline
29
- azureml-pipeline-core
30
- azureml-pipeline-steps
31
- azureml-contrib-pipeline-steps
32
- azureml-cli-common
33
- azureml-opendatasets
34
- azureml-accel-models
35
- azureml-mlflow
36
- azureml-contrib-functions
37
- azureml-contrib-dataset
38
- azureml-contrib-reinforcementlearning
39
- azureml-contrib-mir
40
- azureml-contrib-fairness
41
- azureml-contrib-aisc
42
- azureml-dataset-runtime
43
- azureml-synapse
44
- azureml-responsibleai
45
- azureml-automl-common-tools
1
+ a
2
+ z
3
+ u
4
+ r
5
+ e
6
+ m
7
+ l
8
+ -
9
+ c
10
+ o
11
+ r
12
+ e
@@ -53,8 +53,7 @@ def get_application_insights_region(workspace_region):
53
53
  "polandcentral": "northeurope",
54
54
  "italynorth": "westeurope",
55
55
  "chinaeast3": "chinaeast2",
56
- "spaincentral": "francecentral",
57
- "israelcentral": "westeurope"
56
+ "spaincentral": "francecentral"
58
57
  }.get(workspace_region, workspace_region)
59
58
 
60
59
 
azureml/core/model.py CHANGED
@@ -639,7 +639,6 @@ class Model(object):
639
639
 
640
640
  if child_paths:
641
641
  for path in child_paths:
642
- model_path = os.path.normpath(model_path)
643
642
  if not os.path.exists(os.path.join(model_path, path)):
644
643
  raise WebserviceException('Error, provided child path "{}" cannot be found'.format(path),
645
644
  logger=module_logger)
azureml/core/runconfig.py CHANGED
@@ -1455,8 +1455,7 @@ class RunConfiguration(_AbstractRunConfigElement):
1455
1455
  raise UserErrorException("Name is required to save the runconfig")
1456
1456
  else:
1457
1457
  # A user might have specified the file location to save.
1458
- parent_dir = os.path.dirname(path)
1459
- parent_dir = os.path.normpath(parent_dir)
1458
+ parent_dir = os.path.dirname(path)
1460
1459
  if os.path.exists(parent_dir) and os.path.isdir(parent_dir):
1461
1460
  project_dir_case = False
1462
1461
  else:
@@ -1529,7 +1528,6 @@ class RunConfiguration(_AbstractRunConfigElement):
1529
1528
  run_config_dir_name = get_run_config_dir_name(path) + "/"
1530
1529
  full_runconfig_path = os.path.join(path, run_config_dir_name + name)
1531
1530
 
1532
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1533
1531
  if os.path.isfile(full_runconfig_path):
1534
1532
  full_runconfig_path = os.path.normpath(full_runconfig_path)
1535
1533
  return RunConfiguration._load_from_path(full_runconfig_path=full_runconfig_path,
@@ -1539,12 +1537,10 @@ class RunConfiguration(_AbstractRunConfigElement):
1539
1537
 
1540
1538
  # Appending .runconfig suffix for backcompat case.
1541
1539
  full_runconfig_path = full_runconfig_path + RUNCONFIGURATION_EXTENSION
1542
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1543
1540
  if not os.path.isfile(full_runconfig_path) and name:
1544
1541
  # check for file not in .azureml or aml_config directory
1545
1542
  full_runconfig_path = os.path.join(path, name + RUNCONFIGURATION_EXTENSION)
1546
1543
 
1547
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1548
1544
  if os.path.isfile(full_runconfig_path):
1549
1545
  # Setting name=name_with_ext, so that any subsequent save happens
1550
1546
  # on the name.runconfig file instead of name
@@ -1570,7 +1566,6 @@ class RunConfiguration(_AbstractRunConfigElement):
1570
1566
  :return: The run configuration object.
1571
1567
  :rtype: RunConfiguration
1572
1568
  """
1573
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1574
1569
  with open(full_runconfig_path, "r") as run_config:
1575
1570
  # Loads with all the comments intact.
1576
1571
  commented_map_dict = ruamelyaml.round_trip_load(run_config)
@@ -1596,15 +1591,11 @@ class RunConfiguration(_AbstractRunConfigElement):
1596
1591
  legacy_full_file_path = os.path.join(path, AML_CONFIG_DIR, name + RUNCONFIGURATION_EXTENSION)
1597
1592
  legacy_full_file_path = os.path.normpath(legacy_full_file_path)
1598
1593
  full_file_path = os.path.join(path, AZUREML_DIR, name + RUNCONFIGURATION_EXTENSION)
1599
- legacy_full_file_path = os.path.normpath(legacy_full_file_path)
1600
1594
  if os.path.isfile(legacy_full_file_path):
1601
1595
  file_found = True
1602
- legacy_full_file_path = os.path.normpath(legacy_full_file_path)
1603
1596
  os.remove(legacy_full_file_path)
1604
- full_file_path = os.path.normpath(full_file_path)
1605
1597
  if os.path.isfile(full_file_path):
1606
1598
  file_found = True
1607
- full_file_path = os.path.normpath(full_file_path)
1608
1599
  os.remove(full_file_path)
1609
1600
 
1610
1601
  if file_found == False:
@@ -1715,7 +1706,6 @@ class RunConfiguration(_AbstractRunConfigElement):
1715
1706
  raise UserErrorException("Compute target = {} doesn't exist at {}".format(
1716
1707
  run_config_object.target, compute_target_path))
1717
1708
 
1718
- compute_target_path = os.path.normpath(compute_target_path)
1719
1709
  with open(compute_target_path, "r") as compute_target_file:
1720
1710
  compute_target_dict = ruamelyaml.round_trip_load(compute_target_file)
1721
1711
  if "baseDockerImage" in compute_target_dict:
@@ -1783,7 +1773,6 @@ class RunConfiguration(_AbstractRunConfigElement):
1783
1773
  raise UserErrorException("Spark dependencies file = {} doesn't exist at {}".format(
1784
1774
  spark_dependencies_file, spark_dependencies_path))
1785
1775
 
1786
- spark_dependencies_path = os.path.normpath(spark_dependencies_path)
1787
1776
  with open(spark_dependencies_path, "r") as spark_file:
1788
1777
  if use_commented_map:
1789
1778
  spark_file_dict = ruamelyaml.round_trip_load(spark_file)
@@ -1840,14 +1829,12 @@ class RunConfiguration(_AbstractRunConfigElement):
1840
1829
  _yaml_set_comment_before_after_key_with_error(
1841
1830
  commented_map_dict, "environment", "The file path that contains the environment configuration.")
1842
1831
 
1843
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1844
1832
  with open(full_runconfig_path, 'w') as outfile:
1845
1833
  ruamelyaml.round_trip_dump(commented_map_dict, outfile)
1846
1834
  full_env_path = os.path.normpath(full_env_path)
1847
1835
  with open(full_env_path, 'w') as outfile:
1848
1836
  ruamelyaml.round_trip_dump(environment_commented_map, outfile)
1849
1837
  else:
1850
- full_runconfig_path = os.path.normpath(full_runconfig_path)
1851
1838
  with open(full_runconfig_path, 'w') as outfile:
1852
1839
  ruamelyaml.round_trip_dump(commented_map_dict, outfile)
1853
1840
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: azureml-core
3
- Version: 1.57.0
3
+ Version: 1.57.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
@@ -247,8 +247,8 @@ 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=nsL0-XPsxLaANF_ZZ73pFDqgTxEe7l2c2c7B7qouPfk,12504
250
- azureml/_project/azureml_base_images.json,sha256=DZ9xcAmNQ_r25ylymdR3Ob_BSXOsJhxYweYLlXMskC0,601
251
- azureml/_project/azureml_sdk_scope.txt,sha256=OM-LZGG5t7Vy3Pe9sg1Ll09U5BbVf7RDyEROVEk8-L0,1067
250
+ azureml/_project/azureml_base_images.json,sha256=g5Ue7rNC_nFYeHmb-KmnHj0kJz1SwcDUicKY4ltv8mo,601
251
+ azureml/_project/azureml_sdk_scope.txt,sha256=5YqX2w4p-GU-a9jvGMr40N5SMLE6ewyJ_plbUmdjxxE,36
252
252
  azureml/_project/file_utilities.py,sha256=nrWTVp1QB_6jhZQ2fJOXDx49UXafRRmd5VzAs9ceBNo,2597
253
253
  azureml/_project/ignore_file.py,sha256=LV_-DZ0qGV95a6UhMZcSeqV_bl0DwKnaHh7iO6Dwu_M,3219
254
254
  azureml/_project/index_location.txt,sha256=y0QQZ0ezioStHt6IkKGm3Z5FCjS7oBAtBH4QkxQOHsQ,32
@@ -1153,7 +1153,7 @@ azureml/_vendor/ruamel/yaml/util.py,sha256=OuYsMZEqNNE8Suzc_6GwJALdQCPLy8VhPe3Qx
1153
1153
  azureml/_workspace/__init__.py,sha256=2XIGQap-7lSF-4gfhUFtGzpx9FB7-iUVpW_2omvxiII,269
1154
1154
  azureml/_workspace/_arm_deployment_orchestrator.py,sha256=SnaR44naFsUkRQKvVElA95lqJr7jH79pUBLWrHkNTQ8,6585
1155
1155
  azureml/_workspace/_private_endpoint_deployment_orchestrator.py,sha256=xwAZPEAwSN-oCwx2dfdgVHBJ3yAC8vTvTP06G7KERwI,7410
1156
- azureml/_workspace/_utils.py,sha256=uNGJBfm54llkyIitC_XLLTqZLxLO8sLobzijQCzzohw,24438
1156
+ azureml/_workspace/_utils.py,sha256=ucOqYmaHoorLcSjvIRhkWX6dma6WX3DqPRyQbCmmXcI,24398
1157
1157
  azureml/_workspace/arm_template_builder.py,sha256=9EvORjIo0buprK7I9cFunFw1ENLPVZLP_-NZFJYKebk,20398
1158
1158
  azureml/_workspace/custom.py,sha256=hWqmadHcUCAwvTyf5-iEfUp99YMt87H4J_tFrwkxMww,19391
1159
1159
  azureml/_workspace/mlservicesworkspacetemplate.json,sha256=qfBAmfALbkvJxNK10SimckoCrsblGlkdMEa5FTc4NNE,4094
@@ -1185,12 +1185,12 @@ azureml/core/environment.py,sha256=YF8TWgsKRdzRUNISKx383SVQQNcdmPzgpZpDoePPk9w,7
1185
1185
  azureml/core/experiment.py,sha256=yC3lVr97RoFXFZGNb1tQUdKJTlK_88jLBjKZXeLun3Q,24537
1186
1186
  azureml/core/keyvault.py,sha256=QchGc35DAimaWzdeEH-1wVatFgFFSWUgMNvtH5othIM,6602
1187
1187
  azureml/core/linked_service.py,sha256=zZEu28ooMIb9fUmuKtqfmNU25GwEvqKciGpDmVoqM5Y,9547
1188
- azureml/core/model.py,sha256=zAIPgnN5ATPEG0eWFCducNvTlOxVM4y-P1mmWrYPpeU,142704
1188
+ azureml/core/model.py,sha256=mvCdvSdTbOM7mUA5hPVZ27rcDgDQBibiG9EZ6lpPRgA,142645
1189
1189
  azureml/core/private_endpoint.py,sha256=rywS6SyNxOFz8EMXC7j3vEyN6jVSf4uTy-DPthA0D0U,6354
1190
1190
  azureml/core/profile.py,sha256=YqmxLsKONfrLMwmkat7fDYYKtMA3F5N1ndnr9jIWTSc,18627
1191
1191
  azureml/core/resource_configuration.py,sha256=BtHJWVf_RqeNRJddVfembTOyXrSF2Tt8EwB7DLK7ZHQ,6001
1192
1192
  azureml/core/run.py,sha256=evL5bH2uCwayelN-xCCG7SR3hch3Cd8UK8uVIDiOZGM,115120
1193
- azureml/core/runconfig.py,sha256=7gvpUItgo65flcqqGKMJgX8AjOTMw_vtZkC-5zg8XKc,100921
1193
+ azureml/core/runconfig.py,sha256=LEKwc13VV-Hz01KqCmIKDB4azkpSRePVO4xiSewDr3w,100007
1194
1194
  azureml/core/script_run.py,sha256=S8-fvK2UkuSReoWDYZKpf4TtD4JV7MD1yPuufzOMBGI,12412
1195
1195
  azureml/core/script_run_config.py,sha256=wlbVeXEsliyZ2YTbxvPFwS2W0qiVRApQrv89T5cPDZE,27688
1196
1196
  azureml/core/util.py,sha256=G8Olw1seYwpkIHnaMgnh-Nb9rfXqWWhsKRUAIjnflX0,1487
@@ -1322,9 +1322,9 @@ azureml/exceptions/__init__.py,sha256=wAB_C_TNpL8FK6GXeygupED6mG5IfSrLx_moV7NHIp
1322
1322
  azureml/exceptions/_azureml_exception.py,sha256=XxvMTrADJiTIHSn8DHj2fmyDUhYyBuVUqxYR3cuibz4,18989
1323
1323
  azureml/history/__init__.py,sha256=8U_yD6fMdk8Ok3Z-GO_ibddTgQEB-aY6BTT8t9aYGZw,274
1324
1324
  azureml/history/_tracking.py,sha256=IcZoVbHsOA01eQ3Ealnxe1YbNNnQi4LA5ccINB1cTrU,18541
1325
- azureml_core-1.57.0.dist-info/LICENSE.txt,sha256=GBoIyZ-6vJ4xjRc8U3wTw4EfkuaEdVTm_gbr1Nm8uDI,859
1326
- azureml_core-1.57.0.dist-info/METADATA,sha256=BP3dctjjbcaSj-SLxnlJnzM3_fHQzR2wD_m7O3fBCO0,3113
1327
- azureml_core-1.57.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
1328
- azureml_core-1.57.0.dist-info/entry_points.txt,sha256=EKn4UdjSeleaw9lk1z12dZ7YK6tX4Ig6FYqaC2Uk8b8,154
1329
- azureml_core-1.57.0.dist-info/top_level.txt,sha256=ZOeEa0TAXo6i5wOjwBoqfIGEuxOcKuscGgNSpizqREY,8
1330
- azureml_core-1.57.0.dist-info/RECORD,,
1325
+ azureml_core-1.57.0.post1.dist-info/LICENSE.txt,sha256=GBoIyZ-6vJ4xjRc8U3wTw4EfkuaEdVTm_gbr1Nm8uDI,859
1326
+ azureml_core-1.57.0.post1.dist-info/METADATA,sha256=HfPbhFMkDjuXBwOlX1VQtByyl1fVUerpBScVRd1tdeE,3119
1327
+ azureml_core-1.57.0.post1.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
1328
+ azureml_core-1.57.0.post1.dist-info/entry_points.txt,sha256=EKn4UdjSeleaw9lk1z12dZ7YK6tX4Ig6FYqaC2Uk8b8,154
1329
+ azureml_core-1.57.0.post1.dist-info/top_level.txt,sha256=ZOeEa0TAXo6i5wOjwBoqfIGEuxOcKuscGgNSpizqREY,8
1330
+ azureml_core-1.57.0.post1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.1.0)
2
+ Generator: setuptools (74.1.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5