Skip to content

Commit ca71bb1

Browse files
committed
Fix typo
python -> Python
1 parent 919a9d0 commit ca71bb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-convert-custom-model-to-mlflow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ With Azure Machine Learning, MLflow models get the added benefits of,
2525

2626
MLflow provides support for a variety of [machine learning frameworks](https://mlflow.org/docs/latest/models.html#built-in-model-flavors) (scikit-learn, Keras, Pytorch, and more); however, it might not cover every use case. For example, you may want to create an MLflow model with a framework that MLflow does not natively support or you may want to change the way your model does pre-processing or post-processing when running jobs. To know more about MLflow models read [From artifacts to models in MLflow](concept-mlflow-models.md).
2727

28-
If you didn't train your model with MLFlow and want to use Azure Machine Learning's MLflow no-code deployment offering, you need to convert your custom model to MLFLow. Learn more about [custom python models and MLflow](https://mlflow.org/docs/latest/models.html#custom-python-models).
28+
If you didn't train your model with MLFlow and want to use Azure Machine Learning's MLflow no-code deployment offering, you need to convert your custom model to MLFLow. Learn more about [custom Python models and MLflow](https://mlflow.org/docs/latest/models.html#custom-python-models).
2929

3030
## Prerequisites
3131

3232
Only the mlflow package installed is needed to convert your custom models to an MLflow format.
3333

3434
## Create a Python wrapper for your model
3535

36-
Before you can convert your model to an MLflow supported format, you need to first create a python wrapper for your model.
36+
Before you can convert your model to an MLflow supported format, you need to first create a Python wrapper for your model.
3737
The following code demonstrates how to create a Python wrapper for an `sklearn` model.
3838

3939
```python

0 commit comments

Comments
 (0)