azureml-core 1.55.0.post1__py3-none-any.whl → 1.56.0__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/_base_sdk_common/common.py +3 -0
- azureml/_base_sdk_common/workspace/models/rest_client_enums.py +1 -0
- azureml/_file_utils/file_utils.py +2 -1
- azureml/_model_management/_util.py +3 -0
- azureml/_project/_compute_target_commands.py +1 -1
- azureml/_project/azureml_base_images.json +7 -7
- azureml/_project/azureml_sdk_scope.txt +45 -12
- azureml/_project/file_utilities.py +2 -0
- azureml/_project/ignore_file.py +2 -0
- azureml/_project/project_info.py +3 -0
- azureml/_project/project_manager.py +9 -0
- azureml/_restclient/artifacts_client.py +1 -1
- azureml/_restclient/models/rest_client_enums.py +1 -0
- azureml/core/compute/computeinstance.py +1 -1
- azureml/core/conda_dependencies.py +3 -2
- azureml/core/model.py +4 -0
- azureml/core/runconfig.py +9 -1
- azureml/data/abstract_dataset.py +19 -7
- azureml/data/constants.py +1 -0
- azureml/data/dataset_factory.py +1 -1
- azureml/data/datastore_client.py +6 -0
- azureml/data/file_dataset.py +1 -2
- {azureml_core-1.55.0.post1.dist-info → azureml_core-1.56.0.dist-info}/METADATA +4 -5
- {azureml_core-1.55.0.post1.dist-info → azureml_core-1.56.0.dist-info}/RECORD +29 -29
- {azureml_core-1.55.0.post1.dist-info → azureml_core-1.56.0.dist-info}/WHEEL +1 -1
- {azureml_core-1.55.0.post1.dist-info → azureml_core-1.56.0.dist-info}/LICENSE.txt +0 -0
- {azureml_core-1.55.0.post1.dist-info → azureml_core-1.56.0.dist-info}/entry_points.txt +0 -0
- {azureml_core-1.55.0.post1.dist-info → azureml_core-1.56.0.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
|
|
1
|
-
ver = "1.
|
1
|
+
ver = "1.56.0"
|
@@ -133,6 +133,7 @@ def get_run_config_dir_path_if_exists(project_path):
|
|
133
133
|
def get_run_config_dir_path(project_path):
|
134
134
|
# Try to look for the old aml_config directory first
|
135
135
|
# If that does not exist default to use the new .azureml
|
136
|
+
project_path = os.path.normpath(project_path)
|
136
137
|
run_config_dir_path = os.path.join(project_path, AML_CONFIG_DIR)
|
137
138
|
if not os.path.exists(run_config_dir_path):
|
138
139
|
run_config_dir_path = os.path.join(project_path, AZUREML_DIR)
|
@@ -142,6 +143,7 @@ def get_run_config_dir_path(project_path):
|
|
142
143
|
def get_run_config_dir_name(project_path):
|
143
144
|
# Try to look for the old aml_config directory first
|
144
145
|
# If that does not exist default to use the new .azureml
|
146
|
+
project_path = os.path.normpath(project_path)
|
145
147
|
run_config_dir_path = os.path.join(project_path, AML_CONFIG_DIR)
|
146
148
|
run_config_dir_name = AML_CONFIG_DIR
|
147
149
|
if not os.path.exists(run_config_dir_path):
|
@@ -156,6 +158,7 @@ def get_config_file_name(project_config_path):
|
|
156
158
|
:return: Either project.json or config.json
|
157
159
|
:rtype: str
|
158
160
|
"""
|
161
|
+
project_config_path = os.path.normpath(project_config_path)
|
159
162
|
legacy_config_file_path = os.path.join(project_config_path, LEGACY_PROJECT_FILENAME)
|
160
163
|
if os.path.exists(legacy_config_file_path):
|
161
164
|
return LEGACY_PROJECT_FILENAME
|
@@ -98,6 +98,7 @@ def makedirs_for_file_path(file_path):
|
|
98
98
|
"""
|
99
99
|
:param file_path: relative or absolute path to a file
|
100
100
|
"""
|
101
|
+
file_path = os.path.normpath(file_path)
|
101
102
|
parent_path = os.path.join(file_path, os.path.pardir)
|
102
103
|
parent_path = os.path.normpath(parent_path)
|
103
104
|
if not os.path.exists(parent_path):
|
@@ -205,7 +206,7 @@ def download_file(source_uri, path=None, max_retries=5, stream=True, protocol="h
|
|
205
206
|
if path is None:
|
206
207
|
module_logger.debug('Output file path is {}, the file was not downloaded.'.format(path))
|
207
208
|
return
|
208
|
-
|
209
|
+
path = os.path.normpath(path)
|
209
210
|
# download using BlobClient
|
210
211
|
if is_source_uri_matches_storage_blob(source_uri):
|
211
212
|
sas_token, account_name, endpoint_suffix, container_name, blob_name = get_block_blob_service_credentials(
|
@@ -150,6 +150,7 @@ def upload_dependency(workspace, dependency, create_tar=False, arcname=None, sho
|
|
150
150
|
"""
|
151
151
|
from azureml._restclient.artifacts_client import ArtifactsClient
|
152
152
|
artifact_client = ArtifactsClient(workspace.service_context)
|
153
|
+
dependency = os.path.normpath(dependency)
|
153
154
|
if dependency.startswith('http') or dependency.startswith('wasb'):
|
154
155
|
return dependency, urlparse(dependency).path.split('/')[-1]
|
155
156
|
if not os.path.exists(dependency):
|
@@ -204,6 +205,7 @@ def wrap_execution_script(execution_script, schema_file, dependencies, log_aml_d
|
|
204
205
|
:return: str path to wrapped execution script
|
205
206
|
"""
|
206
207
|
new_script_loc = tempfile.mkstemp(suffix='.py')[1]
|
208
|
+
execution_script = os.path.normpath(execution_script)
|
207
209
|
dependencies.append(execution_script)
|
208
210
|
if not os.path.exists(execution_script):
|
209
211
|
raise WebserviceException('Path to execution script {} does not exist.'.format(execution_script),
|
@@ -878,6 +880,7 @@ def cleanup_docker_image(docker_client, image_id):
|
|
878
880
|
|
879
881
|
|
880
882
|
def validate_path_exists_or_throw(member, name, extra_message=''):
|
883
|
+
member = os.path.normpath(member)
|
881
884
|
if not os.path.exists(member):
|
882
885
|
raise WebserviceException("{0} {1} doesn't exist. {2}".format(name, member, extra_message),
|
883
886
|
logger=module_logger)
|
@@ -244,7 +244,7 @@ def _execute_ssh_command(address, port, username, command_to_run, password=None,
|
|
244
244
|
|
245
245
|
ssh = paramiko.SSHClient()
|
246
246
|
|
247
|
-
ssh.set_missing_host_key_policy(paramiko.
|
247
|
+
ssh.set_missing_host_key_policy(paramiko.RejectPolicy())
|
248
248
|
|
249
249
|
ssh.connect(address, port, username, pkey=private_key, password=password)
|
250
250
|
|
@@ -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": "20240418.v1",
|
3
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.2-cudnn8-ubuntu20.04": "20240418.v1",
|
4
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04": "20240418.v1",
|
5
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.6-cudnn8-ubuntu20.04": "20240418.v1",
|
6
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04": "20240418.v1",
|
7
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04": "20240418.v1",
|
8
|
+
"mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04": "20240418.v1"
|
9
9
|
}
|
@@ -1,12 +1,45 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
-
|
9
|
-
|
10
|
-
|
11
|
-
|
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
|
@@ -18,6 +18,7 @@ def create_directory(path, set_hidden=False):
|
|
18
18
|
|
19
19
|
:rtype None
|
20
20
|
"""
|
21
|
+
path = os.path.normpath(path)
|
21
22
|
if os.path.exists(path):
|
22
23
|
return
|
23
24
|
os.makedirs(path)
|
@@ -34,6 +35,7 @@ def make_file_or_directory_hidden(path):
|
|
34
35
|
|
35
36
|
:rtype str
|
36
37
|
"""
|
38
|
+
path = os.path.normpath(path)
|
37
39
|
if os.name == 'nt':
|
38
40
|
ctypes.windll.kernel32.SetFileAttributesW(path, 0x02)
|
39
41
|
else:
|
azureml/_project/ignore_file.py
CHANGED
@@ -52,6 +52,7 @@ class IgnoreFile(object):
|
|
52
52
|
|
53
53
|
:rtype: None
|
54
54
|
"""
|
55
|
+
self._path = os.path.normpath(self._path)
|
55
56
|
return self._path and os.path.exists(self._path)
|
56
57
|
|
57
58
|
def create_if_not_exists(self, patterns_to_exclude=default_patterns):
|
@@ -61,6 +62,7 @@ class IgnoreFile(object):
|
|
61
62
|
:rtype: None
|
62
63
|
"""
|
63
64
|
if not self.exists():
|
65
|
+
self._path = os.path.normpath(self._path)
|
64
66
|
with open(self._path, 'w') as fo:
|
65
67
|
fo.write('\n'.join(patterns_to_exclude) + '\n')
|
66
68
|
|
azureml/_project/project_info.py
CHANGED
@@ -33,6 +33,7 @@ def add(project_id, scope, project_path, is_config_file_path=False):
|
|
33
33
|
config_file_name = get_config_file_name(config_directory)
|
34
34
|
project_file_path = os.path.join(config_directory, config_file_name)
|
35
35
|
# We overwriting if project.json exists.
|
36
|
+
project_file_path = os.path.normpath(project_file_path)
|
36
37
|
with open(project_file_path, "w") as fo:
|
37
38
|
info = ProjectInfo(project_id, scope)
|
38
39
|
fo.write(json.dumps(info.__dict__))
|
@@ -76,7 +77,9 @@ def get(project_path, no_recursive_check=False):
|
|
76
77
|
for config_path in [AML_CONFIG_DIR, AZUREML_DIR]:
|
77
78
|
for files_to_look in [LEGACY_PROJECT_FILENAME, CONFIG_FILENAME]:
|
78
79
|
config_file_path = os.path.join(project_path, config_path, files_to_look)
|
80
|
+
config_file_path = os.path.normpath(config_file_path)
|
79
81
|
if os.path.exists(config_file_path):
|
82
|
+
config_file_path = os.path.normpath(config_file_path)
|
80
83
|
with open(config_file_path) as info_json:
|
81
84
|
config_json = json.load(info_json)
|
82
85
|
# If Scope is not there, then this is an old workspace config.json config file
|
@@ -82,6 +82,7 @@ def _update_requirements_binding(repo_path, config_dir_to_use):
|
|
82
82
|
conda_dependencies_path = os.path.join(repo_path, config_dir_to_use, _conda_dependencies_file_name)
|
83
83
|
|
84
84
|
lines = []
|
85
|
+
conda_dependencies_path = os.path.normpath(conda_dependencies_path)
|
85
86
|
with open(conda_dependencies_path, "r") as infile:
|
86
87
|
for line in infile:
|
87
88
|
if requirements_version:
|
@@ -90,6 +91,7 @@ def _update_requirements_binding(repo_path, config_dir_to_use):
|
|
90
91
|
line = line.replace(default_index, requirements_index)
|
91
92
|
|
92
93
|
lines.append(line)
|
94
|
+
conda_dependencies_path = os.path.normpath(conda_dependencies_path)
|
93
95
|
with open(conda_dependencies_path, 'w') as outfile:
|
94
96
|
for line in lines:
|
95
97
|
outfile.write(line)
|
@@ -105,8 +107,10 @@ def attach_project(project_id, project_path, scope, compute_target_dict):
|
|
105
107
|
:rtype: None
|
106
108
|
"""
|
107
109
|
from azureml._base_sdk_common.common import get_run_config_dir_name
|
110
|
+
project_path = os.path.normpath(project_path)
|
108
111
|
is_existing_dir = os.path.isdir(project_path)
|
109
112
|
if not is_existing_dir:
|
113
|
+
project_path = os.path.normpath(project_path)
|
110
114
|
# We creating all intermediate dirs too.
|
111
115
|
os.makedirs(os.path.abspath(project_path))
|
112
116
|
|
@@ -157,15 +161,20 @@ def _copy_default_files(path, default_fileset):
|
|
157
161
|
this_dir, this_filename = os.path.split(__file__)
|
158
162
|
default_files_path = os.path.join(this_dir, default_fileset)
|
159
163
|
|
164
|
+
path = os.path.normpath(path)
|
160
165
|
if not os.path.exists(path):
|
166
|
+
path = os.path.normpath(path)
|
161
167
|
os.mkdir(path)
|
162
168
|
for filename in os.listdir(default_files_path):
|
163
169
|
orig_path = os.path.join(default_files_path, filename)
|
164
170
|
new_path = os.path.join(path, filename)
|
165
171
|
if os.path.isdir(orig_path):
|
172
|
+
new_path = os.path.normpath(new_path)
|
166
173
|
shutil.copytree(orig_path, new_path)
|
167
174
|
else:
|
175
|
+
new_path = os.path.normpath(new_path)
|
168
176
|
if not os.path.exists(new_path):
|
177
|
+
new_path = os.path.normpath(new_path)
|
169
178
|
shutil.copy(orig_path, new_path)
|
170
179
|
|
171
180
|
|
@@ -101,8 +101,8 @@ class ArtifactsClient(WorkspaceClient):
|
|
101
101
|
|
102
102
|
def upload_artifact_from_path(self, path, *args, **kwargs):
|
103
103
|
"""upload a local file to a new artifact"""
|
104
|
-
path = os.path.normpath(path)
|
105
104
|
path = os.path.abspath(path)
|
105
|
+
path = os.path.normpath(path)
|
106
106
|
with open(path, "rb") as stream:
|
107
107
|
return self.upload_artifact_from_stream(stream, *args, **kwargs)
|
108
108
|
|
@@ -118,7 +118,7 @@ class ComputeInstance(ComputeTarget):
|
|
118
118
|
if subnet_id:
|
119
119
|
vnet_resourcegroup_name = subnet_id[subnet_id.index("/resourceGroups/")
|
120
120
|
+ len("/resourceGroups/"):subnet_id.index("/providers")]
|
121
|
-
vnet_name = subnet_id[subnet_id.index("/
|
121
|
+
vnet_name = subnet_id[subnet_id.lower().index("/virtualnetworks/")
|
122
122
|
+ len("/virtualNetworks/"):subnet_id.index("/subnets")]
|
123
123
|
subnet_name = subnet_id[subnet_id.index("/subnets/") + len("/subnets/"):]
|
124
124
|
status = ComputeInstanceStatus.deserialize(obj_dict['properties'])
|
@@ -125,10 +125,11 @@ class CondaDependencies(object):
|
|
125
125
|
|
126
126
|
def __init__(self, conda_dependencies_file_path=None, _underlying_structure=None):
|
127
127
|
"""Initialize a new object to manage dependencies."""
|
128
|
-
if conda_dependencies_file_path:
|
128
|
+
if conda_dependencies_file_path is not None:
|
129
|
+
conda_dependencies_file_path = os.path.normpath(conda_dependencies_file_path)
|
129
130
|
with open(conda_dependencies_file_path, "r") as input:
|
130
131
|
self._conda_dependencies = ruamelyaml.round_trip_load(input)
|
131
|
-
elif _underlying_structure:
|
132
|
+
elif _underlying_structure is not None:
|
132
133
|
self._conda_dependencies = _underlying_structure
|
133
134
|
else:
|
134
135
|
with resource_stream(
|
azureml/core/model.py
CHANGED
@@ -599,6 +599,7 @@ class Model(object):
|
|
599
599
|
# Artifact ID components.
|
600
600
|
origin = 'LocalUpload'
|
601
601
|
container = '{}-{}'.format(datetime.now().strftime('%y%m%dT%H%M%S'), str(uuid.uuid4())[:8])
|
602
|
+
model_path = os.path.normpath(model_path)
|
602
603
|
model_base_name = os.path.basename(os.path.abspath(model_path))
|
603
604
|
|
604
605
|
file_names, artifact_names = Model._collect_model_artifact_paths(model_path, child_paths)
|
@@ -639,6 +640,7 @@ class Model(object):
|
|
639
640
|
:type child_paths: builtin.list[str]
|
640
641
|
:raises: azureml.exceptions.WebserviceException
|
641
642
|
"""
|
643
|
+
model_path = os.path.normpath(model_path)
|
642
644
|
if not os.path.exists(model_path):
|
643
645
|
raise WebserviceException('Error, provided model path "{}" cannot be found'.format(model_path),
|
644
646
|
logger=module_logger)
|
@@ -658,6 +660,7 @@ class Model(object):
|
|
658
660
|
:param child_paths:
|
659
661
|
:type child_paths: builtin.list[str]
|
660
662
|
"""
|
663
|
+
model_path = os.path.normpath(model_path)
|
661
664
|
model_parent_path = os.path.dirname(os.path.abspath(model_path))
|
662
665
|
|
663
666
|
if child_paths:
|
@@ -944,6 +947,7 @@ class Model(object):
|
|
944
947
|
return sas_to_relative_download_path
|
945
948
|
|
946
949
|
def _download_model_files(self, sas_to_relative_download_path, target_dir, exist_ok):
|
950
|
+
target_dir = os.path.normpath(target_dir)
|
947
951
|
for sas, path in sas_to_relative_download_path.items():
|
948
952
|
target_path = os.path.join(target_dir, path)
|
949
953
|
if not exist_ok and os.path.exists(target_path):
|
azureml/core/runconfig.py
CHANGED
@@ -1445,6 +1445,7 @@ class RunConfiguration(_AbstractRunConfigElement):
|
|
1445
1445
|
|
1446
1446
|
# True if the specified path is a project directory. False if the path specified is a file.
|
1447
1447
|
project_dir_case = True
|
1448
|
+
path = os.path.normpath(path)
|
1448
1449
|
if os.path.exists(path) and os.path.isdir(path):
|
1449
1450
|
# This should be the project directory
|
1450
1451
|
if name is None and self._name is None:
|
@@ -1456,6 +1457,7 @@ class RunConfiguration(_AbstractRunConfigElement):
|
|
1456
1457
|
else:
|
1457
1458
|
# A user might have specified the file location to save.
|
1458
1459
|
parent_dir = os.path.dirname(path)
|
1460
|
+
path = os.path.normpath(path)
|
1459
1461
|
if os.path.exists(parent_dir) and os.path.isdir(parent_dir):
|
1460
1462
|
project_dir_case = False
|
1461
1463
|
else:
|
@@ -1514,6 +1516,7 @@ class RunConfiguration(_AbstractRunConfigElement):
|
|
1514
1516
|
path = os.getcwd()
|
1515
1517
|
|
1516
1518
|
project_dir_case = True
|
1519
|
+
path = os.path.normpath(path)
|
1517
1520
|
if os.path.isfile(path):
|
1518
1521
|
full_runconfig_path = path
|
1519
1522
|
project_dir_case = False
|
@@ -1528,6 +1531,7 @@ class RunConfiguration(_AbstractRunConfigElement):
|
|
1528
1531
|
full_runconfig_path = os.path.join(path, run_config_dir_name + name)
|
1529
1532
|
|
1530
1533
|
if os.path.isfile(full_runconfig_path):
|
1534
|
+
full_runconfig_path = os.path.normpath(full_runconfig_path)
|
1531
1535
|
return RunConfiguration._load_from_path(full_runconfig_path=full_runconfig_path,
|
1532
1536
|
path=path,
|
1533
1537
|
name=name,
|
@@ -1586,6 +1590,7 @@ class RunConfiguration(_AbstractRunConfigElement):
|
|
1586
1590
|
:raises: UserErrorException
|
1587
1591
|
"""
|
1588
1592
|
file_found = False
|
1593
|
+
legacy_full_file_path = os.path.normpath(legacy_full_file_path)
|
1589
1594
|
legacy_full_file_path = os.path.join(path, AML_CONFIG_DIR, name + RUNCONFIGURATION_EXTENSION)
|
1590
1595
|
full_file_path = os.path.join(path, AZUREML_DIR, name + RUNCONFIGURATION_EXTENSION)
|
1591
1596
|
if os.path.isfile(legacy_full_file_path):
|
@@ -1698,6 +1703,7 @@ class RunConfiguration(_AbstractRunConfigElement):
|
|
1698
1703
|
run_config_dir_path,
|
1699
1704
|
run_config_object.target + COMPUTECONTEXT_EXTENSION)
|
1700
1705
|
|
1706
|
+
compute_target_path = os.path.normpath(compute_target_path)
|
1701
1707
|
if not os.path.isfile(compute_target_path):
|
1702
1708
|
raise UserErrorException("Compute target = {} doesn't exist at {}".format(
|
1703
1709
|
run_config_object.target, compute_target_path))
|
@@ -1759,6 +1765,7 @@ class RunConfiguration(_AbstractRunConfigElement):
|
|
1759
1765
|
:return:
|
1760
1766
|
:rtype: None
|
1761
1767
|
"""
|
1768
|
+
spark_dependencies_path = os.path.normpath(spark_dependencies_path)
|
1762
1769
|
if spark_dependencies_file:
|
1763
1770
|
# Reading spark dependencies file.
|
1764
1771
|
spark_dependencies_path = os.path.join(
|
@@ -1826,7 +1833,7 @@ class RunConfiguration(_AbstractRunConfigElement):
|
|
1826
1833
|
|
1827
1834
|
with open(full_runconfig_path, 'w') as outfile:
|
1828
1835
|
ruamelyaml.round_trip_dump(commented_map_dict, outfile)
|
1829
|
-
|
1836
|
+
full_env_path = os.path.normpath(full_env_path)
|
1830
1837
|
with open(full_env_path, 'w') as outfile:
|
1831
1838
|
ruamelyaml.round_trip_dump(environment_commented_map, outfile)
|
1832
1839
|
else:
|
@@ -2007,6 +2014,7 @@ class RunConfiguration(_AbstractRunConfigElement):
|
|
2007
2014
|
# Check if environment is specified as a dict or a file reference.
|
2008
2015
|
if "environment" in commented_map_or_dict and type(commented_map_or_dict["environment"]) == str:
|
2009
2016
|
# environment is specified as a file reference.
|
2017
|
+
environment_path = os.path.normpath(environment_path)
|
2010
2018
|
environment_path = os.path.join(dir_to_load,
|
2011
2019
|
commented_map_or_dict["environment"])
|
2012
2020
|
with open(environment_path, "r") as environment_config:
|
azureml/data/abstract_dataset.py
CHANGED
@@ -655,7 +655,7 @@ class AbstractDataset(object):
|
|
655
655
|
|
656
656
|
@staticmethod
|
657
657
|
@track(_get_logger, activity_type=_INTERNAL_API)
|
658
|
-
def _load(path: str, workspace):
|
658
|
+
def _load(path: str, workspace, dataType=None):
|
659
659
|
AbstractDataset._validate_args(path, workspace)
|
660
660
|
|
661
661
|
from azureml.dataprep.api.mltable._mltable_helper import _download_mltable_yaml, _is_tabular,\
|
@@ -674,11 +674,21 @@ class AbstractDataset(object):
|
|
674
674
|
# path is legacy dataset name, optional_version is the version number
|
675
675
|
return AbstractDataset._get_by_name(workspace, path, optional_version)
|
676
676
|
elif path_type is _PathType.cloud:
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
677
|
+
if dataType == "UriFolder" or dataType == "UriFile":
|
678
|
+
path_type = "folder" if dataType == "UriFolder" else "file"
|
679
|
+
from azureml.dataprep.rslex import PyRsDataflow
|
680
|
+
dataflow = dataprep().EnginelessDataflow(PyRsDataflow.from_paths([{path_type: path}]))
|
681
|
+
from azureml.data.file_dataset import FileDataset
|
682
|
+
return FileDataset._create(definition=dataflow)
|
683
|
+
elif dataType == "MLTable" or dataType is None:
|
684
|
+
# assume MLTable if no explicit dataType is provided
|
685
|
+
try:
|
686
|
+
local_path = _download_mltable_yaml(path)
|
687
|
+
except MLtable_UserErrorException as exc:
|
688
|
+
_get_logger().warning('Failed to download mltable yaml with error {}'.format(exc))
|
689
|
+
raise UserErrorException("Failed to download mltable yaml with error: {}".format(exc))
|
690
|
+
else:
|
691
|
+
raise UserErrorException("Asset type {} is not supported by V1 SDK, pleae use V2 SDK".format(dataType))
|
682
692
|
|
683
693
|
import os.path
|
684
694
|
local_yaml_path = "{}/MLTable".format(local_path.rstrip("/"))
|
@@ -913,7 +923,9 @@ class AbstractDataset(object):
|
|
913
923
|
|
914
924
|
if v2_success:
|
915
925
|
# 'dataUri' points to the location of the data dir containing the MLTable file
|
916
|
-
|
926
|
+
path = v2_result.json()['dataVersion']['dataUri']
|
927
|
+
type = v2_result.json()['dataVersion']['dataType']
|
928
|
+
return AbstractDataset._load(path=path, workspace=workspace, dataType=type)
|
917
929
|
else:
|
918
930
|
_get_logger().warning('Tried to retrieve v2 data asset but could not find v2 data asset'
|
919
931
|
'registered with name "{}"{} in the workspace.'
|
azureml/data/constants.py
CHANGED
azureml/data/dataset_factory.py
CHANGED
@@ -364,7 +364,7 @@ class TabularDatasetFactory:
|
|
364
364
|
# merge with set_column_types
|
365
365
|
if set_column_types is not None:
|
366
366
|
for column in set_column_types.keys():
|
367
|
-
if column_types_builder.conversion_candidates
|
367
|
+
if column in column_types_builder.conversion_candidates:
|
368
368
|
del column_types_builder.conversion_candidates[column]
|
369
369
|
|
370
370
|
dataflow = column_types_builder.to_dataflow()
|
azureml/data/datastore_client.py
CHANGED
@@ -1092,6 +1092,12 @@ class _DatastoreClient:
|
|
1092
1092
|
if datastore_type == constants.GIT:
|
1093
1093
|
# TODO return GitDatastore for git datastore
|
1094
1094
|
return AbstractDatastore(ws, datastore.name, constants.GIT)
|
1095
|
+
if datastore_type == constants.ONE_LAKE:
|
1096
|
+
# operations using OneLake datastore types are only supported in v2 sdk
|
1097
|
+
# but we're returning an AbstractDatastore to not break datastore list scenarios
|
1098
|
+
module_logger.debug(("Datastore {} is a OneLake datastore type. Datastore operations for OneLake types "
|
1099
|
+
"are only supported in the v2 sdk.").format(datastore.name))
|
1100
|
+
return AbstractDatastore(ws, datastore.name, constants.ONE_LAKE)
|
1095
1101
|
raise TypeError("Unsupported Datastore Type: {}".format(datastore.data_store_type))
|
1096
1102
|
|
1097
1103
|
@staticmethod
|
azureml/data/file_dataset.py
CHANGED
@@ -587,13 +587,12 @@ def _get_and_validate_download_list_local(download_records, download_list, targe
|
|
587
587
|
errors.append((resource_identifier, value.errorCode))
|
588
588
|
else:
|
589
589
|
raise AzureMLException(f'Unexpected error during file download: {value}')
|
590
|
-
actual_download_list = []
|
591
590
|
|
592
591
|
if errors:
|
593
592
|
from .dataset_error_handling import _download_error_handler
|
594
593
|
# this will throw UserErrorException or AzureMLException based on set of errors encountered
|
595
594
|
_download_error_handler(errors, _get_logger())
|
596
|
-
return
|
595
|
+
return downloaded_files
|
597
596
|
|
598
597
|
|
599
598
|
def _log_and_print_warning(message):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: azureml-core
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.56.0
|
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
|
@@ -10,11 +10,10 @@ Classifier: Intended Audience :: Developers
|
|
10
10
|
Classifier: Intended Audience :: System Administrators
|
11
11
|
Classifier: Programming Language :: Python
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
13
|
-
Classifier: Programming Language :: Python :: 3.7
|
14
13
|
Classifier: Programming Language :: Python :: 3.8
|
15
14
|
Classifier: Programming Language :: Python :: 3.9
|
16
15
|
Classifier: Programming Language :: Python :: 3.10
|
17
|
-
Requires-Python: >=3.
|
16
|
+
Requires-Python: >=3.8,< 4.0
|
18
17
|
Description-Content-Type: text/x-rst
|
19
18
|
License-File: LICENSE.txt
|
20
19
|
Requires-Dist: pytz
|
@@ -34,13 +33,13 @@ Requires-Dist: azure-mgmt-containerregistry <11,>=8.2.0
|
|
34
33
|
Requires-Dist: azure-mgmt-storage <=22.0.0,>=16.0.0
|
35
34
|
Requires-Dist: azure-mgmt-keyvault <11.0.0,>=0.40.0
|
36
35
|
Requires-Dist: azure-mgmt-authorization <5,>=0.40.0
|
37
|
-
Requires-Dist: azure-mgmt-network <=
|
36
|
+
Requires-Dist: azure-mgmt-network <=26.0.0
|
38
37
|
Requires-Dist: azure-graphrbac <1.0.0,>=0.40.0
|
39
38
|
Requires-Dist: azure-common <2.0.0,>=1.1.12
|
40
39
|
Requires-Dist: msrest <=0.7.1,>=0.5.1
|
41
40
|
Requires-Dist: msrestazure <=0.6.4,>=0.4.33
|
42
41
|
Requires-Dist: urllib3 <3.0.0,>1.26.17
|
43
|
-
Requires-Dist: packaging <=
|
42
|
+
Requires-Dist: packaging <=25.0,>=20.0
|
44
43
|
Requires-Dist: python-dateutil <3.0.0,>=2.7.3
|
45
44
|
Requires-Dist: ndg-httpsclient <=0.5.1
|
46
45
|
Requires-Dist: SecretStorage <4.0.0
|
@@ -8,10 +8,10 @@ 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=93pNIw4RoXPejIVWMy6sU5ZJeUTHQPysSa0ai0eEQRw,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
|
-
azureml/_base_sdk_common/common.py,sha256=
|
14
|
+
azureml/_base_sdk_common/common.py,sha256=b26CXL0LDUV5JGPYGDMtRk1xrPCc3G8cQJyR3jbKLW8,27590
|
15
15
|
azureml/_base_sdk_common/credentials.py,sha256=UMwCuuliSsCCQUItlOu4P0Mtd8Pk0KLXUOd-bhwboaQ,1570
|
16
16
|
azureml/_base_sdk_common/data_transformers.py,sha256=ibvHPPwWDr1sRQ4zj4rg3F-dvvuzKTLx9z8I1u_-JvU,1550
|
17
17
|
azureml/_base_sdk_common/execution_service_address.py,sha256=jNeqyFLSfrQ_5UDaZSvZmdHTN2qYglaH9LR6mNUTl8o,1517
|
@@ -94,7 +94,7 @@ azureml/_base_sdk_common/workspace/models/resource_name.py,sha256=FTVliAXdFIM7Er
|
|
94
94
|
azureml/_base_sdk_common/workspace/models/resource_quota.py,sha256=n1PxKOG5HXONHFdcu_lGGRZbksX3LkjntWOxUoLGffI,1778
|
95
95
|
azureml/_base_sdk_common/workspace/models/resource_sku_location_info.py,sha256=ugMStAob5f-tZem3UTFLUOjV_d-xWGEO3VdsX766EvI,1485
|
96
96
|
azureml/_base_sdk_common/workspace/models/resource_sku_zone_details.py,sha256=RxhFbx7UtnG_qpj9-lNBWsmjZ1y5tcYgFEO0u_g5M1g,1329
|
97
|
-
azureml/_base_sdk_common/workspace/models/rest_client_enums.py,sha256=
|
97
|
+
azureml/_base_sdk_common/workspace/models/rest_client_enums.py,sha256=ANM6mGf7Cz-cgaSdl4Pd3M1yKuyIz9mxx1F-A77N5SU,6224
|
98
98
|
azureml/_base_sdk_common/workspace/models/restriction.py,sha256=7FqvwFj8ybdmjRxQnv4Slhgqgpf2LZj-Ifhwr1ZjqFE,1629
|
99
99
|
azureml/_base_sdk_common/workspace/models/service_managed_resources_settings.py,sha256=1K3d0NdU4C_Mw6WXIW4wdqKXVV8OViKwi3gNFJjsifE,1021
|
100
100
|
azureml/_base_sdk_common/workspace/models/service_principal_credentials.py,sha256=XWg7UlsTjMXXrgG_4GNg4U-PHq_f614RZZO9ZeGzb5c,1034
|
@@ -205,7 +205,7 @@ azureml/_compute/data/synapse_compute_template.json,sha256=IBWiGWT7Mmp-Z_Pw-zYx4
|
|
205
205
|
azureml/_execution/__init__.py,sha256=2XIGQap-7lSF-4gfhUFtGzpx9FB7-iUVpW_2omvxiII,269
|
206
206
|
azureml/_execution/_commands.py,sha256=ejWcDHBwSqDBa1zcW33F2PdpnfLJs4p-6qnyC9ikgrE,36803
|
207
207
|
azureml/_file_utils/__init__.py,sha256=eyb8nF-WJiQdBlbj7M8WIFxvSPl2Y4qny2f4OQDGcwk,625
|
208
|
-
azureml/_file_utils/file_utils.py,sha256=
|
208
|
+
azureml/_file_utils/file_utils.py,sha256=bJGZ7W5v61Y0-35mtsrmUYi32M6a8Hy5zeUEMxR8Ih4,20469
|
209
209
|
azureml/_file_utils/upload.py,sha256=W-IcpakJ1-TWtpnaeGpXXhijixmT9coHr4aaKFgTfnk,3626
|
210
210
|
azureml/_history/__init__.py,sha256=2XIGQap-7lSF-4gfhUFtGzpx9FB7-iUVpW_2omvxiII,269
|
211
211
|
azureml/_history/utils/__init__.py,sha256=JlCCObuOLZyNhIZlsoL51KtFxiY4xKIIzIRDBcdeu6Y,183
|
@@ -232,7 +232,7 @@ azureml/_model_converters/_utils.py,sha256=hSyO7DX0yvA51M9RGD4FeFSYMvXDWpFr_8vKf
|
|
232
232
|
azureml/_model_converters/model_convert_operation.py,sha256=be45MnV-Jt-f4ebM55b6rCb-DIB0SKvs5kruXwS7SUM,8127
|
233
233
|
azureml/_model_management/__init__.py,sha256=2XIGQap-7lSF-4gfhUFtGzpx9FB7-iUVpW_2omvxiII,269
|
234
234
|
azureml/_model_management/_constants.py,sha256=KfgB8azTm16_DA1ADfTwNXTTXT1m9G5Xnepxy5uSNws,3687
|
235
|
-
azureml/_model_management/_util.py,sha256=
|
235
|
+
azureml/_model_management/_util.py,sha256=AcuK6cyu70C8eQ4FwqiirnuX22r9YNcNt5cSHy4Geak,64224
|
236
236
|
azureml/_model_management/data/aci_service_payload_template.json,sha256=w_FE0vBE6NHC8FmP72k6YhBIPAKwcZda1CArElpPCmk,465
|
237
237
|
azureml/_model_management/data/aci_specific_service_create_payload_template.json,sha256=QbJ18ayQSLM642iWfjBef9Ra9qr4nOPchvnDptXya9o,371
|
238
238
|
azureml/_model_management/data/aks_service_payload_template.json,sha256=HJq9KXkVG1vG7l740CwlGHKBHI--dfUydAh4QEdWTcs,1091
|
@@ -246,23 +246,23 @@ azureml/_model_management/data/mms_profile_payload_template.json,sha256=4Mt0SSY_
|
|
246
246
|
azureml/_model_management/data/mms_workspace_image_payload_template.json,sha256=u6Wz3wPx9kJq8Xv-b-kj9fxof7n7zwF-7RAv8nTvQlQ,296
|
247
247
|
azureml/_project/__init__.py,sha256=fXk56x7HrgsyVMGN5yuE08JN9x0JszBhsBNBX5NOneY,412
|
248
248
|
azureml/_project/_commands.py,sha256=gUNeO7UoxFDplcm5dT68t2pAL_rTKRY8_0oZIS0O_ec,39864
|
249
|
-
azureml/_project/_compute_target_commands.py,sha256=
|
250
|
-
azureml/_project/azureml_base_images.json,sha256
|
251
|
-
azureml/_project/azureml_sdk_scope.txt,sha256=
|
252
|
-
azureml/_project/file_utilities.py,sha256=
|
253
|
-
azureml/_project/ignore_file.py,sha256=
|
249
|
+
azureml/_project/_compute_target_commands.py,sha256=nsL0-XPsxLaANF_ZZ73pFDqgTxEe7l2c2c7B7qouPfk,12504
|
250
|
+
azureml/_project/azureml_base_images.json,sha256=-c7-kq_XPdZ_SM0tA8RD4JzS16kN4bfIIrE4cLzrpqY,601
|
251
|
+
azureml/_project/azureml_sdk_scope.txt,sha256=OM-LZGG5t7Vy3Pe9sg1Ll09U5BbVf7RDyEROVEk8-L0,1067
|
252
|
+
azureml/_project/file_utilities.py,sha256=nrWTVp1QB_6jhZQ2fJOXDx49UXafRRmd5VzAs9ceBNo,2597
|
253
|
+
azureml/_project/ignore_file.py,sha256=LV_-DZ0qGV95a6UhMZcSeqV_bl0DwKnaHh7iO6Dwu_M,3219
|
254
254
|
azureml/_project/index_location.txt,sha256=y0QQZ0ezioStHt6IkKGm3Z5FCjS7oBAtBH4QkxQOHsQ,32
|
255
255
|
azureml/_project/mappings.py,sha256=-z_Qfo0EvjqyTpvhR7pv3c8XsPzKmLNQYuQbCz8L_-s,3054
|
256
256
|
azureml/_project/project.py,sha256=yXYRHAmVwVa8LO8grXqBVojAuHsP1YWJeic7VLEA6CY,7248
|
257
257
|
azureml/_project/project_engine.py,sha256=XDIM1HofOtvKvhYeKvx45bhxLMujbqdITVAKzuVy620,2662
|
258
|
-
azureml/_project/project_info.py,sha256=
|
259
|
-
azureml/_project/project_manager.py,sha256=
|
258
|
+
azureml/_project/project_info.py,sha256=yAvhIj7k6xwb50Tj0EupvxhU1pzEMoHhWa74BaABMTg,5806
|
259
|
+
azureml/_project/project_manager.py,sha256=YTmBI0CsAbB_UXAof3Tb7CVjBtaMZ-SlifvsUULNpjg,8570
|
260
260
|
azureml/_project/project_mapper.py,sha256=XdRK6Vd3XtwmaUTh0wrruk8ZsxG1h9ANX6X7CSY7sSI,1728
|
261
261
|
azureml/_project/ssh_key_info.py,sha256=277YlmQ9abiHf4T8QCFazr1dSU-zOpAiFYqKgKvtPaU,292
|
262
262
|
azureml/_project/base_project_files/conda_dependencies.yml,sha256=vCBcx08LiXJMkTtGv-axFq0Gzna1KKG6d0NOKoIFSUY,614
|
263
263
|
azureml/_restclient/__init__.py,sha256=wvFkr6a9a2sVRWHaeH-ghtpGb3Gh25G-orZu7mXKcfw,746
|
264
264
|
azureml/_restclient/arm_template_client.py,sha256=HlENPelC9JGEQ3UUnkMEvuIQ4-KigE-72okJjtEirMk,2870
|
265
|
-
azureml/_restclient/artifacts_client.py,sha256=
|
265
|
+
azureml/_restclient/artifacts_client.py,sha256=FckxS5rsjFos2uhzHo8W3Yr6EEwh7CQ9MGcPqfJZ5HI,26614
|
266
266
|
azureml/_restclient/assets_client.py,sha256=60GcBhRKx_59HeRPZcNIVXHA4OG99FFyK9X5y_S5WVw,5426
|
267
267
|
azureml/_restclient/clientbase.py,sha256=pj3hVihypdpzu6RQvUeFheLRRoDTDJ2yGAFjHhJ7A-Y,25873
|
268
268
|
azureml/_restclient/constants.py,sha256=cG5T8xtrgPBPwckSmDLo-cXlxWx502xNzRdweNehgZQ,3190
|
@@ -722,7 +722,7 @@ azureml/_restclient/models/resource_name.py,sha256=4mUiiv2PuXVtP4WTuPj98Ao5Y0QK4
|
|
722
722
|
azureml/_restclient/models/resource_quota.py,sha256=_gRJMAPEvz1zYNASDV4eWIJVD_VhcrOGRcZl162Dj48,1907
|
723
723
|
azureml/_restclient/models/resource_sku_location_info.py,sha256=2ud80_A7g6QSx7DalLdt2124qYXrRzUDs9nv-Dkz_us,1620
|
724
724
|
azureml/_restclient/models/resource_sku_zone_details.py,sha256=9SyeNU7mqbjXLvxlQrA8Dw5IYaZEnWYN9YVSjQhiFkY,1470
|
725
|
-
azureml/_restclient/models/rest_client_enums.py,sha256=
|
725
|
+
azureml/_restclient/models/rest_client_enums.py,sha256=Rd5K3YezmSt-uFu9VRjcXCy78EXp2yHt4rxAhvnbIBw,10557
|
726
726
|
azureml/_restclient/models/restriction.py,sha256=VUM11ogA26v1jAMQxws5H7BkxKLrKeZIX7TDZfH0AlU,1768
|
727
727
|
azureml/_restclient/models/retrieve_full_fidelity_metric_request_dto.py,sha256=kS2sg3wtGnizzW--2j6y89oWreC_1K-D0eiUnrnbGZQ,1509
|
728
728
|
azureml/_restclient/models/rgit_hub_package.py,sha256=7iw-4KE55r4KVlF29uOei6LB2L04ehepzd5fUDlaHUw,1171
|
@@ -1176,7 +1176,7 @@ azureml/core/_portal.py,sha256=MvzYl-0m1M9nmorgWl7gbpHtQhkf5bL92Ul9H0pB2ds,5987
|
|
1176
1176
|
azureml/core/_serialization_utils.py,sha256=MnNB6Q62Wv1T1F_obbyVczkGmw1_TqgpruaSf80CWK4,12059
|
1177
1177
|
azureml/core/authentication.py,sha256=mCHwQKr3-d2uoZdiCsn6agY9eD7bHh7MjY8SWqxSmcs,107611
|
1178
1178
|
azureml/core/compute_target.py,sha256=Fy_fGutRdrwlTnp9owKd9YCniEqsCfhKxqTJudoBnXQ,17547
|
1179
|
-
azureml/core/conda_dependencies.py,sha256=
|
1179
|
+
azureml/core/conda_dependencies.py,sha256=qSZRHNusa9ZymprHFMg4kcT0Ze4NGcgfou7Ggdfho9s,41264
|
1180
1180
|
azureml/core/container_registry.py,sha256=PGwGMaZ0pEolaKv1s_wpAJjJoqB5krEfjbDmbkrvv5Q,2422
|
1181
1181
|
azureml/core/databricks.py,sha256=cbJT89_kc80Rfb5RoCHVttqVHI8_0HeXwSxC4fHXNQo,20593
|
1182
1182
|
azureml/core/dataset.py,sha256=lWnN4kpkEStugePes-qhTqbkKl5y3W_HjMZNWk6FRL0,65849
|
@@ -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=
|
1188
|
+
azureml/core/model.py,sha256=EVgAFBPbcUKNTnmkag6T-oDRJTvOvIx4NzAYRw1xXDs,143059
|
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=
|
1193
|
+
azureml/core/runconfig.py,sha256=9L1eH2htOLjXQz2vVBQBC4PFJwtlArCaupTH18mH4OA,100073
|
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
|
@@ -1201,7 +1201,7 @@ azureml/core/compute/aks.py,sha256=qNkNsbjRpb7fi6yKt9doDoWOB07HTEiejgFAJPVAWAg,7
|
|
1201
1201
|
azureml/core/compute/amlcompute.py,sha256=MUFnV4Zo7ZoertnC6qBdCsqRrv87H5YOVuDKq7JvNbQ,86369
|
1202
1202
|
azureml/core/compute/batch.py,sha256=F5KfltJqSjh7vLGPV8gnIdHDmfAyZgHY4JSOjgi12hc,16355
|
1203
1203
|
azureml/core/compute/compute.py,sha256=xnlIz6jidaXICP4scsNrpYWdUG1gK5g6aQumABngadM,41710
|
1204
|
-
azureml/core/compute/computeinstance.py,sha256=
|
1204
|
+
azureml/core/compute/computeinstance.py,sha256=6xjHJMaWR17jQ5hnACWLn6OD9OgAk3DSNks3m08kn0Q,59844
|
1205
1205
|
azureml/core/compute/databricks.py,sha256=6J770r3dgqY3WY1FMUA_9RI7poTvUqjMEfr348J_FFg,20711
|
1206
1206
|
azureml/core/compute/datafactory.py,sha256=EPBs_-cv2DfxgYALC3vDq4p0BbqmLz2w1oumd7z_paY,20424
|
1207
1207
|
azureml/core/compute/dsvm.py,sha256=RoIg5K_TvOQs5mEblm6poxzHPDm1ZGXKexclBBEwJms,15915
|
@@ -1240,14 +1240,14 @@ azureml/data/_exception_handler.py,sha256=u3RNdn9SHZKZLOQe0rBLOEL9vrUZUCJ0fs4sHu
|
|
1240
1240
|
azureml/data/_loggerfactory.py,sha256=jb0yYWB9R0mdT2Clxh-qi5aeh221j1kVQRjA6r3iXn4,13215
|
1241
1241
|
azureml/data/_partition_format.py,sha256=SaO7phTH3FSb9VwkJZZiESRWRyNwXqgJr7-vc2gDoqQ,5671
|
1242
1242
|
azureml/data/_profile_run_script.py,sha256=zMI9psJSbiHJ7iHUz0tIlNOK4egUa20WJc2w3XS_y0Q,1253
|
1243
|
-
azureml/data/abstract_dataset.py,sha256=
|
1243
|
+
azureml/data/abstract_dataset.py,sha256=LTXNa9nUwmhBfnfjMgrDghWL3SorDD-UumT6wnDzOuk,59959
|
1244
1244
|
azureml/data/abstract_datastore.py,sha256=9V3PzLUVa27_iWaa6BmcB2C51DInvTct7xM7oitdm4E,3907
|
1245
1245
|
azureml/data/azure_data_lake_datastore.py,sha256=brZgWQ5yBDdS1J_Q3jZ9iLHzGZwoTpzwPXmCnGxDj_Y,16289
|
1246
1246
|
azureml/data/azure_my_sql_datastore.py,sha256=4wZ-2lAK9KCmMD0Ek7Cwc429VMpMw7nHZSds3i8WxTs,3107
|
1247
1247
|
azureml/data/azure_postgre_sql_datastore.py,sha256=UrysYXFxZYl5z0H7AiVlJTr1tIDbQ0lP4elu6iFCfMg,3544
|
1248
1248
|
azureml/data/azure_sql_database_datastore.py,sha256=1nvw8VIfwcZVoDDWPxLTMpyypiNTHiKuukIkchKmX78,5870
|
1249
1249
|
azureml/data/azure_storage_datastore.py,sha256=-GWdNmei1PaG5B-euJ9IySe8iXx7dKM0D6rFU6QusVU,49182
|
1250
|
-
azureml/data/constants.py,sha256=
|
1250
|
+
azureml/data/constants.py,sha256=7n3HmgM42rQFFctsxoiMFlSbTG68Y1wpNb0ufrOz0zQ,3829
|
1251
1251
|
azureml/data/context_managers.py,sha256=vOiovtVGf1bd93CxCMabwxifNiWVb5g2Tli-hJfRNpM,58981
|
1252
1252
|
azureml/data/data_reference.py,sha256=F6Xwa6CP-XuhTQXdqPDRt6Og-pGOTaZq9F-iXik-P2o,12480
|
1253
1253
|
azureml/data/datacache.py,sha256=jRuerpG78U02lZbT26l3ou9HRwvD4Cd14Buox7aUaFY,27846
|
@@ -1259,15 +1259,15 @@ azureml/data/dataset_action_run.py,sha256=nXIJTUoidM0SGtDe_knTGuvNl1ioMSbwNMBR1T
|
|
1259
1259
|
azureml/data/dataset_consumption_config.py,sha256=BfJmZhMcEQNfW70q63UhY8rxJXgC7HEiixabWJo1Q38,13095
|
1260
1260
|
azureml/data/dataset_definition.py,sha256=O9UdJQpIqb5rPJx65rJh7r9PqO6ekzcH4MRldCAFRJ0,12308
|
1261
1261
|
azureml/data/dataset_error_handling.py,sha256=AaYhz7LagM3M12uvGJ5C1DsfHsma8K1NR37Pn1X6DYk,8360
|
1262
|
-
azureml/data/dataset_factory.py,sha256=
|
1262
|
+
azureml/data/dataset_factory.py,sha256=I1L5jzNGpCOBklMcyzEysdNrhGtShLHt8lg8JL_n904,65115
|
1263
1263
|
azureml/data/dataset_profile.py,sha256=PrHgpnr0_NaPm8p4uCPBSCaLh0bMMMUZHkE2FVv3qbs,6503
|
1264
1264
|
azureml/data/dataset_profile_run.py,sha256=hLKuDJXRWfsxrl_gAcl_8rBdPxpuKhz2OI8KvorXtQw,2907
|
1265
1265
|
azureml/data/dataset_profile_run_config.py,sha256=EimVfwjGDQAB0UurF7hBQVlkDBQNN8sbCdrC43XYtRE,6975
|
1266
1266
|
azureml/data/dataset_snapshot.py,sha256=dSEJsRVi0qPvwOlbPYOQOP16ywx4J_TUQlhhxUkQ394,11670
|
1267
1267
|
azureml/data/dataset_type_definitions.py,sha256=Y0fmO6JymdLJjvAigfnrQN0_lxTcTRMlZxkYCqpX0yU,2831
|
1268
|
-
azureml/data/datastore_client.py,sha256=
|
1268
|
+
azureml/data/datastore_client.py,sha256=OrSuz0dr_fbAGwXK0y46n7oODsZNmpiVS1ejljYHW8c,69818
|
1269
1269
|
azureml/data/dbfs_datastore.py,sha256=dnhBcMMosyapbDrXkUaiQeUqHv8LsW-keZ-LG63IfEU,1563
|
1270
|
-
azureml/data/file_dataset.py,sha256
|
1270
|
+
azureml/data/file_dataset.py,sha256=-SmorGGKYk1CyaagZfpzJQTxaS0T-wnhuLsgTAmTnFo,30329
|
1271
1271
|
azureml/data/hdfs_datastore.py,sha256=FFL9ijzC2CrOgmCRxziMfivEzEmU_41sc992PgwOkyY,5395
|
1272
1272
|
azureml/data/output_dataset_config.py,sha256=YIlRzCH_NpAchCrGaVLfsGUvlApAni1lO6rwlou8GYQ,49350
|
1273
1273
|
azureml/data/sql_data_reference.py,sha256=5PYT7VFCqp3PY9QGlPTsx5XX7NxYugOyff3GRM_DYes,5835
|
@@ -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.
|
1326
|
-
azureml_core-1.
|
1327
|
-
azureml_core-1.
|
1328
|
-
azureml_core-1.
|
1329
|
-
azureml_core-1.
|
1330
|
-
azureml_core-1.
|
1325
|
+
azureml_core-1.56.0.dist-info/LICENSE.txt,sha256=GBoIyZ-6vJ4xjRc8U3wTw4EfkuaEdVTm_gbr1Nm8uDI,859
|
1326
|
+
azureml_core-1.56.0.dist-info/METADATA,sha256=_7O3IJsvjtRUBN-VeM7KDvTLNXudNLlEQyvNY69q7_8,3146
|
1327
|
+
azureml_core-1.56.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
1328
|
+
azureml_core-1.56.0.dist-info/entry_points.txt,sha256=EKn4UdjSeleaw9lk1z12dZ7YK6tX4Ig6FYqaC2Uk8b8,154
|
1329
|
+
azureml_core-1.56.0.dist-info/top_level.txt,sha256=ZOeEa0TAXo6i5wOjwBoqfIGEuxOcKuscGgNSpizqREY,8
|
1330
|
+
azureml_core-1.56.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|