Skip to content

Commit 86d0234

Browse files
authored
Update how-to-use-foundation-models.md
1 parent eddb4f8 commit 86d0234

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/machine-learning/how-to-use-foundation-models.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ You can filter the list of models in the model catalog by Task, or by license. S
3838
> [!NOTE]
3939
>Models from Hugging Face are subject to third party license terms available on the Hugging Face model details page. It is your responsibility to comply with the model's license terms.
4040
41-
You can quickly test out any pre-trained model using the Sample Inference widget on the model card, providing your own sample input to test the result. Additionally, the model card for each model includes a brief description of the model and links to samples for code based inferencing, finetuning and evaluation of the model.
41+
You can quickly test out any pre-trained model using the Sample Inference widget on the model card, providing your own sample input to test the result. Additionally, the model card for each model includes a brief description of the model and links to samples for code based inferencing, fine-tuning and evaluation of the model.
4242

4343
## How to evaluate foundation models using your own test data
4444

@@ -63,7 +63,7 @@ Each model can be evaluated for the specific inference task that the model can b
6363

6464
**Compute:**
6565

66-
1. Provide the Azure Machine Learning Compute cluster you would like to use for finetuning the model. Evaluation needs to run on GPU compute. Ensure that you have sufficient compute quota for the compute SKUs you wish to use.
66+
1. Provide the Azure Machine Learning Compute cluster you would like to use for fine-tuning the model. Evaluation needs to run on GPU compute. Ensure that you have sufficient compute quota for the compute SKUs you wish to use.
6767

6868
1. Select **Finish** in the Evaluate wizard to submit your evaluation job. Once the job completes, you can view evaluation metrics for the model. Based on the evaluation metrics, you might decide if you would like to finetune the model using your own training data. Additionally, you can decide if you would like to register the model and deploy it to an endpoint.
6969

@@ -84,7 +84,7 @@ You can invoke the finetune settings form by selecting on the **Finetune** butto
8484
:::image type="content" source="./media/how-to-use-foundation-models/finetune-quick-wizard.png" alt-text="Screenshot showing the finetune settings options in the foundation models finetune settings form.":::
8585

8686

87-
**Finetuning task type**
87+
**Fine-tuning task type**
8888

8989
* Every pre-trained model from the model catalog can be finetuned for a specific set of tasks (For Example: Text classification, Token classification, Question answering). Select the task you would like to use from the drop-down.
9090

@@ -99,21 +99,21 @@ You can invoke the finetune settings form by selecting on the **Finetune** butto
9999

100100
* Validation data: Pass in the data you would like to use to validate your model. Selecting **Automatic split** reserves an automatic split of training data for validation. Alternatively, you can provide a different validation dataset.
101101
* Test data: Pass in the test data you would like to use to evaluate your finetuned model. Selecting **Automatic split** reserves an automatic split of training data for test.
102-
* Compute: Provide the Azure Machine Learning Compute cluster you would like to use for finetuning the model. Finetuning needs to run on GPU compute. We recommend using compute SKUs with A100 / V100 GPUs when fine tuning. Ensure that you have sufficient compute quota for the compute SKUs you wish to use.
102+
* Compute: Provide the Azure Machine Learning Compute cluster you would like to use for fine-tuning the model. Fine-tuning needs to run on GPU compute. We recommend using compute SKUs with A100 / V100 GPUs when fine tuning. Ensure that you have sufficient compute quota for the compute SKUs you wish to use.
103103

104-
3. Select **Finish** in the finetune form to submit your finetuning job. Once the job completes, you can view evaluation metrics for the finetuned model. You can then register the finetuned model output by the finetuning job and deploy this model to an endpoint for inferencing.
104+
3. Select **Finish** in the finetune form to submit your fine-tuning job. Once the job completes, you can view evaluation metrics for the finetuned model. You can then register the finetuned model output by the fine-tuning job and deploy this model to an endpoint for inferencing.
105105

106-
### Finetuning using code based samples
106+
### Fine-tuning using code based samples
107107

108-
Currently, Azure Machine Learning supports finetuning models for the following language tasks:
108+
Currently, Azure Machine Learning supports fine-tuning models for the following language tasks:
109109

110110
* Text classification
111111
* Token classification
112112
* Question answering
113113
* Summarization
114114
* Translation
115115

116-
To enable users to quickly get started with finetuning, we have published samples (both Python notebooks and CLI examples) for each task in the [azureml-examples git repo Finetune samples](https://github.com/Azure/azureml-examples/tree/main/sdk/python/foundation-models/system/finetune). Each model card also links to Finetuning samples for supported finetuning tasks.
116+
To enable users to quickly get started with fine-tuning, we have published samples (both Python notebooks and CLI examples) for each task in the [azureml-examples git repo Finetune samples](https://github.com/Azure/azureml-examples/tree/main/sdk/python/foundation-models/system/finetune). Each model card also links to fine-tuning samples for supported fine-tuning tasks.
117117

118118
## Deploying foundation models to endpoints for inferencing
119119

@@ -134,7 +134,7 @@ Since the scoring script and environment are automatically included with the fou
134134

135135
:::image type="content" source="./media/how-to-use-foundation-models/deploy-options.png" alt-text="Screenshot showing the deploy options on the foundation model card after user selects the deploy button.":::
136136

137-
Curated models from the Azure Machine Learning are in MLflow format. If you are planning to deploy this models under an online endpoints without network connectivity, you need to package the model first. Packaging is not required for models in the HuggingFace format.
137+
Curated models from the Azure Machine Learning are in MLflow format. If you are planning to deploy this models under an online endpoint without network connectivity, you need to package the model first. Packaging is not required for models in the HuggingFace format.
138138

139139
:::image type="content" source="./media/how-to-use-foundation-models/studio-deploy-package.png" alt-text="Screenshot showing the package option for model deployment.":::
140140

0 commit comments

Comments
 (0)