Skip to content

Commit 4667dab

Browse files
authored
Merge pull request #2418 from MicrosoftDocs/main
1/22/2025 11:00 AM IST Publish
2 parents a1ea100 + 4d6505a commit 4667dab

File tree

5 files changed

+41
-30
lines changed

5 files changed

+41
-30
lines changed

articles/ai-services/speech-service/includes/release-notes/release-notes-stt.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
1-
---
21
author: eric-urban
32
ms.service: azure-ai-speech
43
ms.topic: include
5-
ms.date: 11/19/2024
4+
ms.date: 1/21/2025
65
ms.author: eur
76
---
87

8+
### January 2025 release
9+
10+
#### Real-time speech to text - New English model release
11+
12+
Announcing the release of the latest English speech model (en-US, en-CA), which brings substantial improvements across various performance metrics. Below are the key highlights of this release:
13+
- Accessibility Enhancements: Achieved a 36% reduction in Word Error Rate (WER) on Microsoft internal accessibility test sets, making speech recognition more accurate and reliable for recognizing speech from individuals with speech disabilities.
14+
-
15+
- Ghost Word Reduction: A remarkable 90% reduction in ghost words on the ghost word development set and reductions range from 63% to 100% across other ghost word datasets, significantly enhancing the clarity and accuracy of transcriptions.
16+
-
17+
The new model also improved the overall performance, including entity recognition and better recognition of spelled-out letters.
18+
19+
These advancements are expected to provide a more accurate, efficient, and satisfying experience for all users. The new model is available through the API and Azure AI Foundry playground. Feedback is encouraged to further refine its capabilities.
20+
921
### November 2024 release
1022

1123
#### Speech to text REST API version 2024-11-15
Binary file not shown.

articles/machine-learning/v1/how-to-configure-databricks-automl-environment.md

Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: manashg
88
ms.reviewer: ssalgado
99
ms.service: azure-machine-learning
1010
ms.subservice: automl
11-
ms.date: 10/21/2021
11+
ms.date: 01/21/2025
1212
ms.topic: how-to
1313
ms.custom: UpdateFrequency5
1414
monikerRange: 'azureml-api-1'
@@ -18,7 +18,7 @@ monikerRange: 'azureml-api-1'
1818

1919
Learn how to configure a development environment in Azure Machine Learning that uses Azure Databricks and automated ML.
2020

21-
Azure Databricks is ideal for running large-scale intensive machine learning workflows on the scalable Apache Spark platform in the Azure cloud. It provides a collaborative Notebook-based environment with a CPU or GPU-based compute cluster.
21+
Azure Databricks is ideal for running large-scale intensive machine learning workflows on the scalable Apache Spark platform in the Azure cloud. It provides a collaborative Notebook-based environment with a CPU or GPU-based compute resource.
2222

2323
For information on other machine learning development environments, see [Set up Python development environment](how-to-configure-environment.md).
2424

@@ -38,36 +38,36 @@ You can use Azure Databricks:
3838
+ With [automated machine learning](concept-automated-ml.md) capabilities using an Azure Machine Learning SDK.
3939
+ As a compute target from an [Azure Machine Learning pipeline](../concept-ml-pipelines.md).
4040

41-
## Set up a Databricks cluster
41+
## Set up Databricks compute
4242

43-
Create a [Databricks cluster](/azure/databricks/scenarios/quickstart-create-databricks-workspace-portal). Some settings apply only if you install the SDK for automated machine learning on Databricks.
43+
Create a [Databricks compute resource](/azure/databricks/compute/configure#create-a-new-all-purpose-compute-resource). Some settings apply only if you install the SDK for automated machine learning on Databricks.
4444

45-
**It takes few minutes to create the cluster.**
45+
**It takes few minutes to create the compute resource.**
4646

4747
Use these settings:
4848

4949
| Setting |Applies to| Value |
5050
|----|---|---|
51-
| Cluster Name |always| yourclustername |
51+
| Compute Name |always| yourcomputename |
5252
| Databricks Runtime Version |always| 9.1 LTS|
5353
| Python version |always| 3 |
5454
| Worker Type <br>(determines max # of concurrent iterations) |Automated ML<br>only| Memory optimized VM preferred |
5555
| Workers |always| 2 or higher |
5656
| Enable Autoscaling |Automated ML<br>only| Uncheck |
5757

58-
Wait until the cluster is running before proceeding further.
58+
Wait until the compute is running before proceeding further.
5959

6060
## Add the Azure Machine Learning SDK to Databricks
6161

62-
Once the cluster is running, [create a library](https://docs.databricks.com/user-guide/libraries.html#create-a-library) to attach the appropriate Azure Machine Learning SDK package to your cluster.
62+
Once the compute is running, [create a library](https://docs.databricks.com/user-guide/libraries.html#create-a-library) to attach the appropriate Azure Machine Learning SDK package to your compute.
6363

6464
To use automated ML, skip to [Add the Azure Machine Learning SDK with AutoML](#add-the-azure-machine-learning-sdk-with-automl-to-databricks).
6565

6666

6767
1. Right-click the current Workspace folder where you want to store the library. Select **Create** > **Library**.
6868

6969
> [!TIP]
70-
> If you have an old SDK version, deselect it from cluster's installed libraries and move to trash. Install the new SDK version and restart the cluster. If there is an issue after the restart, detach and reattach your cluster.
70+
> If you have an old SDK version, deselect it from compute's installed libraries and move to trash. Install the new SDK version and restart the compute. If there is an issue after the restart, detach and reattach your compute.
7171
7272
1. Choose the following option (no other SDK installations are supported)
7373

@@ -78,22 +78,20 @@ To use automated ML, skip to [Add the Azure Machine Learning SDK with AutoML](#a
7878
> [!WARNING]
7979
> No other SDK extras can be installed. Choose only the [`databricks`] option .
8080
81-
* Do not select **Attach automatically to all clusters**.
82-
* Select **Attach** next to your cluster name.
81+
* Do not select **Attach automatically to all computes**.
82+
* Select **Attach** next to your compute name.
8383

8484
1. Monitor for errors until status changes to **Attached**, which may take several minutes. If this step fails:
8585

86-
Try restarting your cluster by:
87-
1. In the left pane, select **Clusters**.
88-
1. In the table, select your cluster name.
86+
Try restarting your compute by:
87+
1. In the left pane, select **Compute**.
88+
1. In the table, select your compute name.
8989
1. On the **Libraries** tab, select **Restart**.
90-
91-
A successful install looks like the following:
92-
93-
![Azure Machine Learning SDK for Databricks](../media/how-to-configure-environment/amlsdk-withoutautoml.jpg)
90+
91+
A successful install will show **Installed** under the status column.
9492

9593
## Add the Azure Machine Learning SDK with AutoML to Databricks
96-
If the cluster was created with Databricks Runtime 7.3 LTS (*not* ML), run the following command in the first cell of your notebook to install the Azure Machine Learning SDK.
94+
If the compute was created with Databricks Runtime 7.3 LTS (*not* ML), run the following command in the first cell of your notebook to install the Azure Machine Learning SDK.
9795

9896
```
9997
%pip install --upgrade --force-reinstall -r https://aka.ms/automl_linux_requirements.txt
@@ -103,23 +101,24 @@ If the cluster was created with Databricks Runtime 7.3 LTS (*not* ML), run the f
103101

104102
In AutoML config, when using Azure Databricks add the following parameters:
105103

106-
- ```max_concurrent_iterations``` is based on number of worker nodes in your cluster.
104+
- ```max_concurrent_iterations``` is based on number of worker nodes in your compute.
107105
- ```spark_context=sc``` is based on the default spark context.
108106

109107
## ML notebooks that work with Azure Databricks
110108

111109
Try it out:
112110
+ While many sample notebooks are available, **only [these sample notebooks](https://github.com/Azure/azureml-examples/tree/v1-archive/v1/python-sdk/tutorials/automl-with-databricks) work with Azure Databricks.**
113111

114-
+ Import these samples directly from your workspace. See below:
115-
![Select Import](../media/how-to-configure-environment/azure-db-screenshot.png)
116-
![Import Panel](../media/how-to-configure-environment/azure-db-import.png)
112+
+ Import these samples directly from your workspace:
113+
1. In your workspace, right-click a folder and select **Import**.
114+
1. Specify the URL or browse to a file containing a supported external format or a ZIP archive of notebooks exported from a Databricks workspace.
115+
1. Select **Import**.
117116

118117
+ Learn how to [create a pipeline with Databricks as the training compute](how-to-create-machine-learning-pipelines.md).
119118

120119
## Troubleshooting
121120

122-
* **Databricks cancel an automated machine learning run**: When you use automated machine learning capabilities on Azure Databricks, to cancel a run and start a new experiment run, restart your Azure Databricks cluster.
121+
* **Databricks cancel an automated machine learning run**: When you use automated machine learning capabilities on Azure Databricks, to cancel a run and start a new experiment run, restart your Azure Databricks compute.
123122

124123
* **Databricks >10 iterations for automated machine learning**: In automated machine learning settings, if you have more than 10 iterations, set `show_output` to `False` when you submit the run.
125124

@@ -147,18 +146,18 @@ Try it out:
147146
148147
* **Import error: No module named 'pandas.core.indexes'**: If you see this error when you use automated machine learning:
149148
150-
1. Run this command to install two packages in your Azure Databricks cluster:
149+
1. Run this command to install two packages in your Azure Databricks compute:
151150
152151
```bash
153152
scikit-learn==0.19.1
154153
pandas==0.22.0
155154
```
156155
157-
1. Detach and then reattach the cluster to your notebook.
156+
1. Detach and then reattach the compute to your notebook.
158157
159-
If these steps don't solve the issue, try restarting the cluster.
158+
If these steps don't solve the issue, try restarting the compute.
160159
161-
* **FailToSendFeather**: If you see a `FailToSendFeather` error when reading data on Azure Databricks cluster, refer to the following solutions:
160+
* **FailToSendFeather**: If you see a `FailToSendFeather` error when reading data on Azure Databricks compute, refer to the following solutions:
162161
163162
* Upgrade `azureml-sdk[automl]` package to the latest version.
164163
* Add `azureml-dataprep` version 1.1.8 or above.

0 commit comments

Comments
 (0)