Skip to content

Commit a70a4e8

Browse files
authored
Merge pull request #191443 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents aa801c9 + 7dddd5d commit a70a4e8

11 files changed

+23
-23
lines changed

articles/app-service/monitor-instances-health-check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In addition to configuring the Health check options, you can also configure the
5454

5555
Health check integrates with App Service's [authentication and authorization features](overview-authentication-authorization.md). No additional settings are required if these security features are enabled.
5656

57-
If you're using your own authentication system, the Health check path must allow anonymous access. To secure the Health check endpoint, you should first use features such as [IP restrictions](app-service-ip-restrictions.md#set-an-ip-address-based-rule), [client certificates](app-service-ip-restrictions.md#set-an-ip-address-based-rule), or a Virtual Network to restrict application access. You can secure the Health check endpoint by requiring the `User-Agent` of the incoming request matches `HealthCheck/1.0`. The User-Agent can't be spoofed since the request would already secured by prior security features.
57+
If you're using your own authentication system, the Health check path must allow anonymous access. To secure the Health check endpoint, you should first use features such as [IP restrictions](app-service-ip-restrictions.md#set-an-ip-address-based-rule), [client certificates](app-service-ip-restrictions.md#set-an-ip-address-based-rule), or a Virtual Network to restrict application access. You can secure the Health check endpoint by requiring the `User-Agent` of the incoming request matches `HealthCheck/1.0`. The User-Agent can't be spoofed since the request would already be secured by prior security features.
5858

5959
## Monitoring
6060

articles/machine-learning/azure-machine-learning-release-notes.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ __RSS feed__: Get notified when this page is updated by copying and pasting the
3737
+ **azureml-synapse**
3838
+ Fix the issue that magic widget is disappeared.
3939
+ **azureml-train-automl-runtime**
40-
+ Updating AutoML dependencies to support python 3.8. This change will break compatibility with models trained with SDK 1.37 or below due to newer Pandas interfaces being saved in the model.
40+
+ Updating AutoML dependencies to support Python 3.8. This change will break compatibility with models trained with SDK 1.37 or below due to newer Pandas interfaces being saved in the model.
4141
+ Automl training now supports numpy version 1.19
4242
+ Fix automl reset index logic for ensemble models in automl_setup_model_explanations API
4343
+ In automl, use lightgbm surrogate model instead of linear surrogate model for sparse case after latest lightgbm version upgrade
@@ -1092,7 +1092,7 @@ Learn more about [image instance segmentation labeling](how-to-label-data.md).
10921092
+ Throw exception and clean up workspace and dependent resources if workspace private endpoint creation fails.
10931093
+ Support workspace sku upgrade in workspace update method.
10941094
+ **azureml-datadrift**
1095-
+ Update matplotlib version from 3.0.2 to 3.2.1 to support python 3.8.
1095+
+ Update matplotlib version from 3.0.2 to 3.2.1 to support Python 3.8.
10961096
+ **azureml-dataprep**
10971097
+ Added support of web url data sources with `Range` or `Head` request.
10981098
+ Improved stability for file dataset mount and download.
@@ -1460,7 +1460,7 @@ Learn more about [image instance segmentation labeling](how-to-label-data.md).
14601460
+ **azureml-datadrift**
14611461
+ Data Drift results query from the SDK had a bug that didn't differentiate the minimum, maximum, and mean feature metrics, resulting in duplicate values. We have fixed this bug by prefixing target or baseline to the metric names. Before: duplicate min, max, mean. After: target_min, target_max, target_mean, baseline_min, baseline_max, baseline_mean.
14621462
+ **azureml-dataprep**
1463-
+ Improve handling of write restricted python environments when ensuring .NET Dependencies required for data delivery.
1463+
+ Improve handling of write restricted Python environments when ensuring .NET Dependencies required for data delivery.
14641464
+ Fixed Dataflow creation on file with leading empty records.
14651465
+ Added error handling options for `to_partition_iterator` similar to `to_pandas_dataframe`.
14661466
+ **azureml-interpret**
@@ -1591,7 +1591,7 @@ Access the following web-based authoring tools from the studio:
15911591
### Azure Machine Learning SDK for Python v1.2.0
15921592

15931593
+ **Breaking changes**
1594-
+ Drop support for python 2.7
1594+
+ Drop support for Python 2.7
15951595

15961596
+ **Bug fixes and improvements**
15971597
+ **azure-cli-ml**
@@ -1623,7 +1623,7 @@ Access the following web-based authoring tools from the studio:
16231623

16241624
+ **Feature deprecation**
16251625
+ **Python 2.7**
1626-
+ Last version to support python 2.7
1626+
+ Last version to support Python 2.7
16271627

16281628
+ **Breaking changes**
16291629
+ **Semantic Versioning 2.0.0**
@@ -1827,7 +1827,7 @@ Access the following web-based authoring tools from the studio:
18271827
+ **azureml-contrib-interpret**
18281828
+ Removed text explainers from azureml-contrib-interpret as text explanation has been moved to the interpret-text repo that will be released soon.
18291829
+ **azureml-core**
1830-
+ Dataset: usages for file dataset no longer depend on numpy and pandas to be installed in the python env.
1830+
+ Dataset: usages for file dataset no longer depend on numpy and pandas to be installed in the Python env.
18311831
+ Changed LocalWebservice.wait_for_deployment() to check the status of the local Docker container before trying to ping its health endpoint, greatly reducing the amount of time it takes to report a failed deployment.
18321832
+ Fixed the initialization of an internal property used in LocalWebservice.reload() when the service object is created from an existing deployment using the LocalWebservice() constructor.
18331833
+ Edited error message for clarification.
@@ -2364,7 +2364,7 @@ The Experiment tab in the [new workspace portal](https://ml.azure.com) has been
23642364
+ Exception will be thrown out when either coarse grain or fine grained timestamp column is not included in keep columns list with indication for user that keeping can be done after either including timestamp column in keep column list or call with_time_stamp with None value to release timestamp columns.
23652365
+ Added logging for the size of a registered model.
23662366
+ **azureml-explain-model**
2367-
+ Fixed warning printed to console when "packaging" python package is not installed: "Using older than supported version of lightgbm, please upgrade to version greater than 2.2.1"
2367+
+ Fixed warning printed to console when "packaging" Python package is not installed: "Using older than supported version of lightgbm, please upgrade to version greater than 2.2.1"
23682368
+ Fixed download model explanation with sharding for global explanations with many features
23692369
+ Fixed mimic explainer missing initialization examples on output explanation
23702370
+ Fixed immutable error on set properties when uploading with explanation client using two different types of models
@@ -2464,7 +2464,7 @@ At the time, of this release, the following browsers are supported: Chrome, Fire
24642464
+ **azureml-pipeline-core**
24652465
+ Added support to create, update, and use PipelineDrafts - can be used to maintain mutable pipeline definitions and use them interactively to run
24662466
+ **azureml-train-automl**
2467-
+ Created feature to install specific versions of gpu-capable pytorch v1.1.0, :::no-loc text="cuda"::: toolkit 9.0, pytorch-transformers, which is required to enable BERT/ XLNet in the remote python runtime environment.
2467+
+ Created feature to install specific versions of gpu-capable pytorch v1.1.0, :::no-loc text="cuda"::: toolkit 9.0, pytorch-transformers, which is required to enable BERT/ XLNet in the remote Python runtime environment.
24682468
+ **azureml-train-core**
24692469
+ Early failure of some hyperparameter space definition errors directly in the sdk instead of server side.
24702470

@@ -2511,9 +2511,9 @@ At the time, of this release, the following browsers are supported: Chrome, Fire
25112511
+ Improve reliability of API calls be expanding retries to common requests library exceptions.
25122512
+ Add support for submitting runs from a submitted run.
25132513
+ Fixed expiring SAS token issue in FileWatcher, which caused files to stop being uploaded after their initial token had expired.
2514-
+ Supported importing HTTP csv/tsv files in dataset python SDK.
2514+
+ Supported importing HTTP csv/tsv files in dataset Python SDK.
25152515
+ Deprecated the Workspace.setup() method. Warning message shown to users suggests using create() or get()/from_config() instead.
2516-
+ Added Environment.add_private_pip_wheel(), which enables uploading private custom python packages `whl`to the workspace and securely using them to build/materialize the environment.
2516+
+ Added Environment.add_private_pip_wheel(), which enables uploading private custom Python packages `whl`to the workspace and securely using them to build/materialize the environment.
25172517
+ You can now update the TLS/SSL certificate for the scoring endpoint deployed on AKS cluster both for Microsoft generated and customer certificate.
25182518
+ **azureml-explain-model**
25192519
+ Added parameter to add a model ID to explanations on upload.

articles/machine-learning/component-reference/designer-error-codes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1594,7 +1594,7 @@ To get more help, we recommend that you post the detailed message that accompani
15941594

15951595
## Execute Python Script component
15961596

1597-
Search **in azureml_main** in **70_driver_logs** of **Execute Python Script component** and you could find which line occurred error. For example, "File "/tmp/tmp01_ID/user_script.py", line 17, in azureml_main" indicates that the error occurred in the 17 line of your python script.
1597+
Search **in azureml_main** in **70_driver_logs** of **Execute Python Script component** and you could find which line occurred error. For example, "File "/tmp/tmp01_ID/user_script.py", line 17, in azureml_main" indicates that the error occurred in the 17 line of your Python script.
15981598

15991599
## Distributed training
16001600

articles/machine-learning/component-reference/execute-python-script.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ The Execute Python Script component contains sample Python code that you can use
199199
> [!IMPORTANT]
200200
> Please use unique and meaningful name for files in the script bundle since some common words (like `test`, `app` and etc) are reserved for built-in services.
201201
202-
Following is a script bundle example, which contains a python script file and a txt file:
202+
Following is a script bundle example, which contains a Python script file and a txt file:
203203

204204
> [!div class="mx-imgBorder"]
205205
> ![Script bundle example](media/module/python-script-bundle.png)
@@ -221,7 +221,7 @@ The Execute Python Script component contains sample Python code that you can use
221221
# Execution logic goes here
222222
print(f'Input pandas.DataFrame #1: {dataframe1}')
223223

224-
# Test the custom defined python function
224+
# Test the custom defined Python function
225225
dataframe1 = my_func(dataframe1)
226226

227227
# Test to read custom uploaded files by relative path
@@ -257,7 +257,7 @@ The Execute Python Script component contains sample Python code that you can use
257257

258258
If the component is completed, check the output if as expected.
259259

260-
If the component is failed, you need to do some troubleshooting. Select the component, and open **Outputs+logs** in the right pane. Open **70_driver_log.txt** and search **in azureml_main**, then you could find which line caused the error. For example, "File "/tmp/tmp01_ID/user_script.py", line 17, in azureml_main" indicates that the error occurred in the 17 line of your python script.
260+
If the component is failed, you need to do some troubleshooting. Select the component, and open **Outputs+logs** in the right pane. Open **70_driver_log.txt** and search **in azureml_main**, then you could find which line caused the error. For example, "File "/tmp/tmp01_ID/user_script.py", line 17, in azureml_main" indicates that the error occurred in the 17 line of your Python script.
261261

262262
## Results
263263

articles/machine-learning/how-to-create-register-datasets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ partition_keys = new_dataset.partition_keys # ['country']
296296

297297
After you're done wrangling your data, you can [register](#register-datasets) your dataset, and then load it into your notebook for data exploration prior to model training.
298298

299-
For FileDatasets, you can either **mount** or **download** your dataset, and apply the python libraries you'd normally use for data exploration. [Learn more about mount vs download](how-to-train-with-datasets.md#mount-vs-download).
299+
For FileDatasets, you can either **mount** or **download** your dataset, and apply the Python libraries you'd normally use for data exploration. [Learn more about mount vs download](how-to-train-with-datasets.md#mount-vs-download).
300300

301301
```python
302302
# download the dataset

articles/machine-learning/how-to-debug-managed-online-endpoints-visual-studio-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The following table provides an overview of scenarios to help you choose what wo
3535

3636
| Scenario | Inference HTTP Server | Local endpoint |
3737
|--|--|--|
38-
| Update local python environment, **without** Docker image rebuild | Yes | No |
38+
| Update local Python environment, **without** Docker image rebuild | Yes | No |
3939
| Update scoring script | Yes | Yes |
4040
| Update deployment configurations (deployment, environment, code, model) | No | Yes |
4141
| VS Code Debugger integration | Yes | Yes |

articles/machine-learning/how-to-debug-pipelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,11 @@ run.log("scalar_value", 0.95)
209209
# Python print statement
210210
print("I am a python print statement, I will be sent to the driver logs.")
211211

212-
# Initialize python logger
212+
# Initialize Python logger
213213
logger = logging.getLogger(__name__)
214214
logger.setLevel(args.log_level)
215215

216-
# Plain python logging statements
216+
# Plain Python logging statements
217217
logger.debug("I am a plain debug statement, I will be sent to the driver logs.")
218218
logger.info("I am a plain info statement, I will be sent to the driver logs.")
219219

articles/machine-learning/how-to-deploy-inferencing-gpus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ The conda environment file specifies the dependencies for the service. It includ
142142
```yaml
143143
name: project_environment
144144
dependencies:
145-
# The python interpreter version.
145+
# The Python interpreter version.
146146
# Currently Azure ML only supports 3.5.2 and later.
147147
- python=3.6.2
148148

articles/machine-learning/how-to-designer-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This article uses the sample dataset, **Automobile price data (Raw)**.
4040

4141
1. Connect the output port of the dataset to the top-left input port of the **Execute Python Script** component. The designer exposes the input as a parameter to the entry point script.
4242

43-
The right input port is reserved for zipped python libraries.
43+
The right input port is reserved for zipped Python libraries.
4444

4545
![Connect datasets](media/how-to-designer-python/connect-dataset.png)
4646

articles/machine-learning/how-to-differential-privacy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Use pip to install the [SmartNoise Python packages](https://pypi.org/project/ope
3838

3939
`pip install opendp-smartnoise`
4040

41-
To verify that the packages are installed, launch a python prompt and type:
41+
To verify that the packages are installed, launch a Python prompt and type:
4242

4343
```python
4444
import opendp.smartnoise.core

0 commit comments

Comments
 (0)