Azure ML - inferenceConfig.json - добавить настраиваемое колесо
Я изо всех сил пытаюсь понять, как добавить в inferenceConfig.json
кастомное колесо как
mywheel-0.0.0-cp35-cp35m-manylinux1_x86_64.whl
Глядя на документацию Azure inferenceConfig, я не смог найти способ, примеры всегда это json:
{
"entryScript": "code/mytest/score/score.py",
"environment": {
"docker": {
"arguments": [],
"baseDockerfile": null,
"baseImage": "mcr.microsoft.com/azureml/base:intelmpi2018.3-ubuntu16.04",
"enabled": false,
"sharedVolumes": true,
"shmSize": null
},
"environmentVariables": {
"EXAMPLE_ENV_VAR": "EXAMPLE_VALUE"
},
"name": "my-deploy-env",
"python": {
"baseCondaEnvironment": null,
"condaDependencies": {
"channels": [
"conda-forge"
],
"dependencies": [
"python=3.5",
{
"pip": [
"azureml-defaults",
"azureml-telemetry",
"scikit-learn",
"inference-schema[numpy-support]",
"numpy",
"opencv-python",
"Pillow"
]
}
],
"name": "project_environment"
},
"condaDependenciesFile": null,
"interpreterPath": "python",
"userManagedDependencies": false
},
"version": "1"
}
}