Skip to content

Commit 278139a

Browse files
authored
Merge pull request #108154 from craigcaseyMSFT/vcraic0319
fix broken links from CATS report
2 parents 791cd21 + 5a8ffc6 commit 278139a

File tree

5 files changed

+56
-56
lines changed

5 files changed

+56
-56
lines changed

articles/cognitive-services/Speech-Service/includes/how-to/speech-to-text-basics/speech-to-text-basics-java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ SpeechRecognizer recognizer = new SpeechRecognizer(config, audioConfig);
7878
The [Recognizer class](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer?view=azure-java-stable) for the Speech SDK for Java exposes a few methods that you can use for speech recognition.
7979

8080
* Single-shot recognition (async) - Performs recognition in a non-blocking (asynchronous) mode. This will recognize a single utterance. The end of a single utterance is determined by listening for silence at the end or until a maximum of 15 seconds of audio is processed.
81-
* Continuous recognition (async) - Asynchronously initiates continuous recognition operation. If you want to provide an audio file instead of using a microphone, you'll still need to provide an. To stop asynchronous continuous recognition, call [stopContinuousRecognitionAsync](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer?view=azure-java-stable#stopcontinuousrecognitionasync).
81+
* Continuous recognition (async) - Asynchronously initiates continuous recognition operation. If you want to provide an audio file instead of using a microphone, you'll still need to provide an. To stop asynchronous continuous recognition, call [stopContinuousRecognitionAsync](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer.stopcontinuousrecognitionasync).
8282

8383
> [!NOTE]
8484
> Learn more about how to [choose a speech recognition mode](../../../how-to-choose-recognition-mode.md).
@@ -123,7 +123,7 @@ switch (result.getReason()) {
123123

124124
### Continuous recognition
125125

126-
Continuous recognition is a bit more involved than single-shot recognition. It requires you to subscribe to the `recognizing`, `recognized`, and `canceled` events to get the recognition results. To stop recognition, you must call [`stopContinuousRecognitionAsync`](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer?view=azure-java-stable#stopcontinuousrecognitionasync). Here's an example of how continuous recognition is performed on an audio input file.
126+
Continuous recognition is a bit more involved than single-shot recognition. It requires you to subscribe to the `recognizing`, `recognized`, and `canceled` events to get the recognition results. To stop recognition, you must call [`stopContinuousRecognitionAsync`](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer.stopcontinuousrecognitionasync). Here's an example of how continuous recognition is performed on an audio input file.
127127

128128
Let's start by defining the input and initializing a [`SpeechRecognizer`](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer?view=azure-java-stable):
129129

@@ -180,7 +180,7 @@ recognizer.sessionStopped.addEventListener((s, e) -> {
180180
});
181181
```
182182

183-
With everything set up, we can call [`stopContinuousRecognitionAsync`](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer?view=azure-java-stable#startcontinuousrecognitionasync).
183+
With everything set up, we can call [`stopContinuousRecognitionAsync`](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer.stopcontinuousrecognitionasync).
184184

185185
```java
186186
// Starts continuous recognition. Uses StopContinuousRecognitionAsync() to stop recognition.

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

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ Access the following web-based authoring tools from the studio:
429429
### Azure Machine Learning designer enhancements
430430

431431
+ Formerly known as the visual interface
432-
+ 11 new [modules](algorithm-module-reference/module-reference.md) including recommenders, classifiers, and training utilities including feature engineering, cross validation, and data transformation.
432+
+ 11 new [modules](algorithm-module-reference/module-reference.md) including recommenders, classifiers, and training utilities including feature engineering, cross validation, and data transformation.
433433

434434
### R SDK
435435

@@ -439,9 +439,9 @@ The Azure Machine Learning SDK for R uses the `reticulate` package to bind to th
439439

440440
Main capabilities of the SDK include:
441441

442-
+ Manage cloud resources for monitoring, logging, and organizing your machine learning experiments.
443-
+ Train models using cloud resources, including GPU-accelerated model training.
444-
+ Deploy your models as webservices on Azure Container Instances (ACI) and Azure Kubernetes Service (AKS).
442+
+ Manage cloud resources for monitoring, logging, and organizing your machine learning experiments.
443+
+ Train models using cloud resources, including GPU-accelerated model training.
444+
+ Deploy your models as webservices on Azure Container Instances (ACI) and Azure Kubernetes Service (AKS).
445445

446446
See the [package website](https://azure.github.io/azureml-sdk-for-r) for complete documentation.
447447

@@ -462,28 +462,28 @@ Azure Machine Learning is now a resource provider for Event Grid, you can config
462462
+ We are releasing preview support for disk encryption of your local SSD in Azure Machine Learning Compute. Please raise a technical support ticket to get your subscription whitelisted to use this feature.
463463
+ Public Preview of Azure Machine Learning Batch Inference. Azure Machine Learning Batch Inference targets large inference jobs that are not time-sensitive. Batch Inference provides cost-effective inference compute scaling, with unparalleled throughput for asynchronous applications. It is optimized for high-throughput, fire-and-forget inference over large collections of data.
464464
+ [**azureml-contrib-dataset**](https://docs.microsoft.com/python/api/azureml-contrib-dataset)
465-
+ Enabled functionalities for labeled dataset
466-
```Python
467-
import azureml.core
468-
from azureml.core import Workspace, Datastore, Dataset
469-
import azureml.contrib.dataset
470-
from azureml.contrib.dataset import FileHandlingOption, LabeledDatasetTask
471-
472-
# create a labeled dataset by passing in your JSON lines file
473-
dataset = Dataset._Labeled.from_json_lines(datastore.path('path/to/file.jsonl'), LabeledDatasetTask.IMAGE_CLASSIFICATION)
474-
475-
# download or mount the files in the `image_url` column
476-
dataset.download()
477-
dataset.mount()
478-
479-
# get a pandas dataframe
480-
from azureml.data.dataset_type_definitions import FileHandlingOption
481-
dataset.to_pandas_dataframe(FileHandlingOption.DOWNLOAD)
482-
dataset.to_pandas_dataframe(FileHandlingOption.MOUNT)
483-
484-
# get a Torchvision dataset
485-
dataset.to_torchvision()
486-
```
465+
+ Enabled functionalities for labeled dataset
466+
```Python
467+
import azureml.core
468+
from azureml.core import Workspace, Datastore, Dataset
469+
import azureml.contrib.dataset
470+
from azureml.contrib.dataset import FileHandlingOption, LabeledDatasetTask
471+
472+
# create a labeled dataset by passing in your JSON lines file
473+
dataset = Dataset._Labeled.from_json_lines(datastore.path('path/to/file.jsonl'), LabeledDatasetTask.IMAGE_CLASSIFICATION)
474+
475+
# download or mount the files in the `image_url` column
476+
dataset.download()
477+
dataset.mount()
478+
479+
# get a pandas dataframe
480+
from azureml.data.dataset_type_definitions import FileHandlingOption
481+
dataset.to_pandas_dataframe(FileHandlingOption.DOWNLOAD)
482+
dataset.to_pandas_dataframe(FileHandlingOption.MOUNT)
483+
484+
# get a Torchvision dataset
485+
dataset.to_torchvision()
486+
```
487487

488488
+ **Bug fixes and improvements**
489489
+ **azure-cli-ml**
@@ -583,7 +583,7 @@ Azure Machine Learning is now a resource provider for Event Grid, you can config
583583
+ Being able to consume `FileDataset` and `TabularDataset` as inputs to `PythonScriptStep`, `EstimatorStep`, and `HyperDriveStep` in Azure Machine Learning Pipeline
584584
+ Performance of `FileDataset.mount` has been improved for folders with a large number of files
585585
+ Being able to consume [FileDataset](https://docs.microsoft.com/python/api/azureml-core/azureml.data.filedataset) and [TabularDataset](https://docs.microsoft.com/python/api/azureml-core/azureml.data.tabulardataset) as inputs to [PythonScriptStep](https://docs.microsoft.com/python/api/azureml-pipeline-steps/azureml.pipeline.steps.python_script_step.pythonscriptstep), [EstimatorStep](https://docs.microsoft.com/python/api/azureml-pipeline-steps/azureml.pipeline.steps.estimatorstep), and [HyperDriveStep](https://docs.microsoft.com/python/api/azureml-pipeline-steps/azureml.pipeline.steps.hyperdrivestep) in the Azure Machine Learning Pipeline.
586-
+ Performance of FileDataset.[mount()](https://docs.microsoft.com/python/api/azureml-core/azureml.data.filedataset#mount-mount-point-none-) has been improved for folders with a large number of files
586+
+ Performance of FileDataset.[mount()](https://docs.microsoft.com/python/api/azureml-core/azureml.data.filedataset#mount-mount-point-none----kwargs-) has been improved for folders with a large number of files
587587
+ Added URL to known error recommendations in run details.
588588
+ Fixed a bug in run.get_metrics where requests would fail if a run had too many children
589589
+ Fixed a bug in [run.get_metrics](https://docs.microsoft.com/python/api/azureml-core/azureml.core.run.run#get-metrics-name-none--recursive-false--run-type-none--populate-false-) where requests would fail if a run had too many children
@@ -745,7 +745,7 @@ The Experiment tab in the [new workspace portal](https://ml.azure.com) has been
745745
+ Enabled training with TabularDataset and FileDataset. Please visit https://aka.ms/dataset-tutorial for an example notebook.
746746

747747
+ **azureml-train-core**
748-
+ Added `Nccl` and `Gloo` support in PyTorch estimator
748+
+ Added `Nccl` and `Gloo` support in PyTorch estimator
749749

750750
+ **Bug fixes and improvements**
751751
+ **azureml-automl-core**
@@ -782,9 +782,9 @@ The Experiment tab in the [new workspace portal](https://ml.azure.com) has been
782782
+ Added dockerfile support in `environment_definition` parameter in estimators.
783783
+ Simplified distributed training parameters in estimators.
784784

785-
```py
786-
from azureml.train.dnn import TensorFlow, Mpi, ParameterServer
787-
```
785+
```py
786+
from azureml.train.dnn import TensorFlow, Mpi, ParameterServer
787+
```
788788

789789
## 2019-09-09
790790

@@ -807,12 +807,12 @@ At the time of this release, the following browsers are supported: Chrome, Firef
807807

808808
**Known issues:**
809809

810-
1. Refresh your browser if you see Something went wrong! Error loading chunk files when deployment is in progress.
810+
1. Refresh your browser if you see "Something went wrong! Error loading chunk files" when deployment is in progress.
811811

812-
1. Cant delete or rename file in Notebooks and Files. During Public Preview you can use Jupyter UI or Terminal in Notebook VM to perform update file operations. Because it is a mounted network file system all changes you make on Notebook VM are immediately reflected in the Notebook Workspace.
812+
1. Can't delete or rename file in Notebooks and Files. During Public Preview you can use Jupyter UI or Terminal in Notebook VM to perform update file operations. Because it is a mounted network file system all changes you make on Notebook VM are immediately reflected in the Notebook Workspace.
813813

814814
1. To SSH into the Notebook VM:
815-
1. Find the SSH keys that were created during VM setup. Or, find the keys in the Azure Machine Learning workspace > open Compute tab > locate Notebook VM in the list > open its properties : copy the keys from the dialog.
815+
1. Find the SSH keys that were created during VM setup. Or, find the keys in the Azure Machine Learning workspace > open Compute tab > locate Notebook VM in the list > open it's properties : copy the keys from the dialog.
816816
1. Import those public and private SSH keys to your local machine.
817817
1. Use them to SSH into the Notebook VM.
818818

@@ -1036,7 +1036,7 @@ At the time of this release, the following browsers are supported: Chrome, Firef
10361036
+ Fixing a bug in the Ensemble selection procedure which was unnecessarily growing the resulting ensemble even if the scores remained constant.
10371037
+ Enable re-use of some featurizations across CV Splits for forecasting tasks. This speeds up the run-time of the setup run by roughly a factor of n_cross_validations for expensive featurizations like lags and rolling windows.
10381038
+ Addressing an issue if time is out of pandas supported time range. We now raise a DataException if time is less than pd.Timestamp.min or greater than pd.Timestamp.max
1039-
+ Forecasting now allows different frequencies in train and test sets if they can be aligned. For example, quarterly starting in January and at quarterly starting in October can be aligned.
1039+
+ Forecasting now allows different frequencies in train and test sets if they can be aligned. For example, "quarterly starting in January" and at "quarterly starting in October" can be aligned.
10401040
+ The property "parameters" was added to the TimeSeriesTransformer.
10411041
+ Remove old exception classes.
10421042
+ In forecasting tasks, the `target_lags` parameter now accepts a single integer value or a list of integers. If the integer was provided, only one lag will be created. If a list is provided, the unique values of lags will be taken. target_lags=[1, 2, 2, 4] will create lags of one, 2 and 4 periods.
@@ -1329,9 +1329,9 @@ In Azure portal, you can now:
13291329
+ Create and run automated ML experiments
13301330
+ Create a Notebook VM to try out sample Jupyter notebooks or your own.
13311331
+ Brand new Authoring section (Preview) in the Azure Machine Learning workspace, which includes Automated Machine Learning, Visual Interface and Hosted Notebook VMs
1332-
+ Automatically create a model using Automated machine learning
1333-
+ Use a drag and drop Visual Interface to run experiments
1334-
+ Create a Notebook VM to explore data, create models, and deploy services.
1332+
+ Automatically create a model using Automated machine learning
1333+
+ Use a drag and drop Visual Interface to run experiments
1334+
+ Create a Notebook VM to explore data, create models, and deploy services.
13351335
+ Live chart and metric updating in run reports and run details pages
13361336
+ Updated file viewer for logs, outputs, and snapshots in Run details pages.
13371337
+ New and improved report creation experience in the Experiments tab.
@@ -1587,9 +1587,9 @@ Note: Data Prep Python SDK will no longer install `numpy` and `pandas` packages.
15871587

15881588
+ **Changes**:
15891589
+ Azure ML SDK no longer has azure-cli packages as dependency. Specifically, azure-cli-core and azure-cli-profile dependencies have been removed from azureml-core. These are the user impacting changes:
1590-
+ If you are performing "az login" and then using azureml-sdk, the SDK will do the browser or device code log in one more time. It won't use any credentials state created by "az login".
1591-
+ For Azure CLI authentication, such as using "az login", use _azureml.core.authentication.AzureCliAuthentication_ class. For Azure CLI authentication, do _pip install azure-cli_ in the Python environment where you have installed azureml-sdk.
1592-
+ If you are doing "az login" using a service principal for automation, we recommend using _azureml.core.authentication.ServicePrincipalAuthentication_ class, as azureml-sdk won't use credentials state created by azure CLI.
1590+
+ If you are performing "az login" and then using azureml-sdk, the SDK will do the browser or device code log in one more time. It won't use any credentials state created by "az login".
1591+
+ For Azure CLI authentication, such as using "az login", use _azureml.core.authentication.AzureCliAuthentication_ class. For Azure CLI authentication, do _pip install azure-cli_ in the Python environment where you have installed azureml-sdk.
1592+
+ If you are doing "az login" using a service principal for automation, we recommend using _azureml.core.authentication.ServicePrincipalAuthentication_ class, as azureml-sdk won't use credentials state created by azure CLI.
15931593

15941594
+ **Bug fixes**: This release mostly contains minor bug fixes
15951595

@@ -1602,13 +1602,13 @@ Note: Data Prep Python SDK will no longer install `numpy` and `pandas` packages.
16021602
### Azure portal: new features
16031603
+ New drag and drop charting experience for reports. Users can drag a column or attribute from the well to the chart area where the system will automatically select an appropriate chart type for the user based on the type of data. Users can change the chart type to other applicable types or add additional attributes.
16041604

1605-
Supported Chart Types:
1606-
- Line Chart
1607-
- Histogram
1608-
- Stacked Bar Chart
1609-
- Box Plot
1610-
- Scatter Plot
1611-
- Bubble Plot
1605+
Supported Chart Types:
1606+
- Line Chart
1607+
- Histogram
1608+
- Stacked Bar Chart
1609+
- Box Plot
1610+
- Scatter Plot
1611+
- Bubble Plot
16121612
+ The portal now dynamically generates reports for experiments. When a user submits a run to an experiment, a report will automatically be generated with logged metrics and graphs to allow comparison across different runs.
16131613

16141614
## 2019-01-14
@@ -1701,7 +1701,7 @@ Azure Machine Learning Compute can be created in Python, using Azure portal, or
17011701
* Additional clearer error messages
17021702
* to_spark_dataframe() will no longer crash when Spark uses `Kryo` serialization
17031703
* Value Count Inspector can now show more than 1000 unique values
1704-
* Random Split no longer fails if the original Dataflow doesnt have a name
1704+
* Random Split no longer fails if the original Dataflow doesn't have a name
17051705

17061706
+ **More information**
17071707
* [Azure Machine Learning Data Prep SDK](https://aka.ms/data-prep-sdk)
@@ -1798,7 +1798,7 @@ The Azure portal for Azure Machine Learning has the following updates:
17981798
* String column type now shows up in metrics view
17991799
* Type count now is fixed to show ValueKinds mapped to single FieldType instead of individual ones
18001800
* Write_to_csv no longer fails when path is provided as a string
1801-
* When using Replace, leaving find blank will no longer fail
1801+
* When using Replace, leaving "find" blank will no longer fail
18021802

18031803
## 2018-10-12
18041804

articles/machine-learning/concept-environments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ See the following diagram that shows three environment definitions. Two of them
9090
If you create an environment with unpinned package dependency, for example ```numpy```, that environment will keep using the package version installed at the time of environment creation. Also, any future environment with matching definition will keep using the old version. To update the package, specify a version number to force image rebuild, for example ```numpy==1.18.1```. Note that new dependencies, including nested ones will be installed that might break a previously working scenario
9191

9292
> [!WARNING]
93-
> The [Environment.build](https://docs.microsoft.com/python/api/azureml-core/azureml.core.environment.environment?view=azure-ml-py#build-workspace-) method will rebuild the cached image, with possible side-effect of updating unpinned packages and breaking reproducibility for all environment definitions corresponding to that cached image.
93+
> The [Environment.build](https://docs.microsoft.com/python/api/azureml-core/azureml.core.environment.environment?view=azure-ml-py#build-workspace--image-build-compute-none-) method will rebuild the cached image, with possible side-effect of updating unpinned packages and breaking reproducibility for all environment definitions corresponding to that cached image.
9494
9595
## Next steps
9696

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ datastore.upload(src_dir='data', target_path='data')
151151
dataset = Dataset.Tabular.from_delimited_files(datastore.path('data/prepared.csv'))
152152
```
153153

154-
Use the [`from_sql_query()`](https://docs.microsoft.com/python/api/azureml-core/azureml.data.dataset_factory.tabulardatasetfactory?view=azure-ml-py#from-sql-query-query--validate-true--set-column-types-none-) method on the `TabularDatasetFactory` class to read from Azure SQL Database:
154+
Use the [`from_sql_query()`](https://docs.microsoft.com/python/api/azureml-core/azureml.data.dataset_factory.tabulardatasetfactory?view=azure-ml-py#from-sql-query-query--validate-true--set-column-types-none--query-timeout-30-) method on the `TabularDatasetFactory` class to read from Azure SQL Database:
155155

156156
```Python
157157

0 commit comments

Comments
 (0)