Skip to content

Commit 5ded047

Browse files
authored
Merge pull request #1964 from MicrosoftDocs/main
Merge main to live, 4 AM
2 parents 524db8a + 540abe3 commit 5ded047

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

articles/ai-studio/how-to/deploy-models-llama.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to use the Meta Llama family of models with Azure AI Foun
55
ms.service: azure-ai-studio
66
manager: scottpolly
77
ms.topic: how-to
8-
ms.date: 08/08/2024
8+
ms.date: 12/04/2024
99
ms.reviewer: shubhiraj
1010
reviewer: shubhirajMsft
1111
ms.author: ssalgado

articles/ai-studio/how-to/fine-tune-models-tsuzumi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to fine-tune tsuzumi-7b in Azure AI Foundry portal.
55
manager: scottpolly
66
ms.service: azure-ai-studio
77
ms.topic: how-to
8-
ms.date: 7/23/2024
8+
ms.date: 11/11/2024
99
ms.reviewer: rasavage
1010
reviewer: shubhirajMsft
1111
ms.author: ssalgado

articles/ai-studio/how-to/model-catalog-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom:
1010
- ai-learning-hub
1111
- ignite-2024
1212
ms.topic: how-to
13-
ms.date: 5/21/2024
13+
ms.date: 12/04/2024
1414
ms.reviewer: jcioffi
1515
ms.author: ssalgado
1616
author: ssalgadodev

articles/machine-learning/concept-distributed-training.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ titleSuffix: Azure Machine Learning
44
description: Learn what type of distributed training Azure Machine Learning supports and the open source framework integrations available for distributed training.
55
services: machine-learning
66
ms.service: azure-machine-learning
7-
author: sdgilley
8-
ms.author: sgilley
7+
author: ssalgadodev
8+
ms.author: ssalgado
99
ms.reviewer: ratanase
1010
ms.subservice: training
1111
ms.custom: build-2023
1212
ms.topic: conceptual
13-
ms.date: 03/22/2024
13+
ms.date: 12/05/2024
1414
---
1515

1616
# Distributed training with Azure Machine Learning
@@ -21,7 +21,7 @@ In distributed training, the workload to train a model is split up and shared am
2121

2222
## Deep learning and distributed training
2323

24-
There are two main types of distributed training: [data parallelism](#data-parallelism) and [model parallelism](#model-parallelism). For distributed training on deep learning models, the [Azure Machine Learning SDK in Python](/python/api/overview/azure/ml/intro) supports integrations with PyTorch and TensorFlow. Both are popular frameworks that employ data parallelism for distributed training, and can use [Horovod](https://horovod.readthedocs.io/en/latest/summary_include.html) to optimize compute speeds.
24+
There are two main types of distributed training: [data parallelism](#data-parallelism) and [model parallelism](#model-parallelism). For distributed training on deep learning models, the [Azure Machine Learning SDK in Python](https://github.com/Azure/azure-sdk-for-python/blob/main/README.md) supports integrations with PyTorch and TensorFlow. Both are popular frameworks that employ data parallelism for distributed training, and can use [Horovod](https://horovod.readthedocs.io/en/latest/summary_include.html) to optimize compute speeds.
2525

2626
* [Distributed training with PyTorch](how-to-train-distributed-gpu.md#pytorch)
2727

articles/machine-learning/concept-model-catalog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ author: ssalgadodev
1111
ms.reviewer: timanghn
1212
ms.custom: references_regions, build-2024
1313
ms.collection: ce-skilling-ai-copilot
14-
ms.date: 05/02/2024
14+
ms.date: 12/11/2024
1515
#Customer intent: As a data scientist, I want to learn about models available in the model catalog.
1616
---
1717

articles/machine-learning/how-to-deploy-models-from-huggingface.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.topic: how-to
1010
ms.reviewer: None
1111
author: ssalgadodev
1212
ms.author: ssalgado
13-
ms.date: 12/15/2023
13+
ms.date: 12/11/2024
1414
ms.collection: ce-skilling-ai-copilot
1515
---
1616

@@ -26,7 +26,6 @@ Microsoft has partnered with Hugging Face to bring open-source models from Huggi
2626

2727
Managed online endpoints in Azure Machine Learning help you deploy models to powerful CPU and GPU machines in Azure in a turnkey manner. Managed online endpoints take care of serving, scaling, securing, and monitoring your models, freeing you from the overhead of setting up and managing the underlying infrastructure. The virtual machines are provisioned on your behalf when you deploy models. You can have multiple deployments behind and [split traffic or mirror traffic](./how-to-safely-rollout-online-endpoints.md) to those deployments. Mirror traffic helps you to test new versions of models on production traffic without releasing them production environments. Splitting traffic lets you gradually increase production traffic to new model versions while observing performance. [Auto scale](./how-to-autoscale-endpoints.md) lets you dynamically ramp up or ramp down resources based on workloads. You can configure scaling based on utilization metrics, a specific schedule or a combination of both. An example of scaling based on utilization metrics is to add nodes if CPU utilization goes higher than 70%. An example of schedule-based scaling is to add nodes based on peak business hours.
2828

29-
3029
## Deploy HuggingFace hub models using Studio
3130

3231
To find a model to deploy, open the model catalog in Azure Machine Learning studio. Select 'All Filters', then select 'HuggingFace' in the Filter by collections section. Select the model tile to open the model page.
@@ -89,7 +88,7 @@ ml_client.begin_create_or_update(endpoint).result()
8988

9089
### Test the deployed model
9190

92-
Create a file with inputs that can be submitted to the online endpoint for scoring. Below code sample input for the `fill-mask` type since we deployed the `bert-base-uncased` model. You can find input format, parameters and sample inputs on the [Hugging Face hub inference API documentation](https://huggingface.co/docs/api-inference/detailed_parameters).
91+
Create a file with inputs that can be submitted to the online endpoint for scoring. The code sample in this section allows an input for the `fill-mask` type since we deployed the `bert-base-uncased` model. You can find input format, parameters and sample inputs on the [Hugging Face hub inference API documentation](https://huggingface.co/docs/api-inference/detailed_parameters).
9392

9493
```python
9594
import json

0 commit comments

Comments
 (0)