-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
30 additions
and
170 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Aurora on Azure AI Foundry | ||
|
||
Aurora can be run as a model on [Azure AI Foundry](https://learn.microsoft.com/en-us/azure/ai-studio/what-is-ai-studio). | ||
Aurora can be hosted on [Azure AI Foundry](https://learn.microsoft.com/en-us/azure/ai-studio/what-is-ai-studio). | ||
|
||
This part of the documentation describes how you can produce predictions with Aurora running on a Foundry endpoint, | ||
and how you can launch a Foundry endpoint that hosts Aurora. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
# Running the Inference Server | ||
# Hosting Aurora | ||
|
||
Build the Docker image: | ||
The model is served via [MLflow](https://mlflow.org/). | ||
First, make sure that `mlflow` is installed: | ||
|
||
```bash | ||
make docker | ||
pip install mlflow | ||
``` | ||
|
||
Then upload the resulting image to Azure AI foundry. | ||
|
||
Building the Docker image depends on a list of precompiled dependencies. | ||
If you change the requirements in `pyproject.toml`, this list must be updated: | ||
Then build the MLflow model as follows: | ||
|
||
```bash | ||
make docker-requirements | ||
python package_mlflow.py | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters