Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
26f6236
Fix quickstart MLflow deploy: add azureml-ai-monitoring to model cond…
Chakradhar886 May 7, 2026
bb62157
Wait for training job to finish before deploying in quickstart
Chakradhar886 May 7, 2026
d595b2e
Pin mlflow<3 in quickstart training command (AML tracking server does…
Chakradhar886 May 7, 2026
7ade795
Add azureml-contrib-services to MLflow conda_env to fix deploy-model 502
Chakradhar886 May 8, 2026
6817708
Regenerate credit_defaults_model with modern sklearn for deploy-model
Chakradhar886 May 8, 2026
fcb69c0
Revert "Regenerate credit_defaults_model with modern sklearn for depl…
Chakradhar886 May 8, 2026
474bbdc
Revert: remove azureml-contrib-services from quickstart conda_env
Chakradhar886 May 8, 2026
78a0ec1
Regenerate credit_defaults_model to match MLflow inference container …
Chakradhar886 May 8, 2026
7126f33
credit_defaults_model: align conda.yaml with working quickstart (add …
Chakradhar886 May 8, 2026
ab4e871
Revert "credit_defaults_model: align conda.yaml with working quicksta…
Chakradhar886 May 8, 2026
4ecce94
Revert "Regenerate credit_defaults_model to match MLflow inference co…
Chakradhar886 May 8, 2026
afd9ef4
deploy-model: use custom score.py + env to bypass broken MLflow no-co…
Chakradhar886 May 8, 2026
11b825c
Revert "deploy-model: use custom score.py + env to bypass broken MLfl…
Chakradhar886 May 8, 2026
1c85776
Reapply "deploy-model: use custom score.py + env to bypass broken MLf…
Chakradhar886 May 8, 2026
7661fd4
Revert "Reapply "deploy-model: use custom score.py + env to bypass br…
Chakradhar886 May 8, 2026
eec1344
deploy-model: add azureml-ai-monitoring and pin mlflow<3 in model con…
Chakradhar886 May 8, 2026
57864b3
deploy-model: add azureml-contrib-services to model conda.yaml (fixes…
Chakradhar886 May 8, 2026
9b510f9
quickstart: add azureml-contrib-services to model conda_env (fix cont…
Chakradhar886 May 9, 2026
bea8f32
Update pipeline.ipynb
Chakradhar886 May 9, 2026
e851587
Update quickstart.ipynb
Chakradhar886 May 9, 2026
c4ece9d
quickstart: pip install azureml-ai-monitoring & azureml-contrib-servi…
Chakradhar886 May 9, 2026
b128d19
quickstart: add extra_pip_requirements to log_model so azureml-ai-mon…
Chakradhar886 May 9, 2026
c5c0846
quickstart: revert extra_pip_requirements (incompatible with conda_en…
Chakradhar886 May 10, 2026
bacaff7
deploy-model: use version returned by create_or_update instead of max…
Chakradhar886 May 10, 2026
671f3be
deploy-model: bump static MLflow model env to py3.10/sklearn1.5.2 to …
Chakradhar886 May 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
deploy-model: bump static MLflow model env to py3.10/sklearn1.5.2 to …
…match new inference base image (py3.8 unsupported); resolves liveness probe 502 when deploying the static credit_defaults_model
  • Loading branch information
Chakradhar886 committed May 10, 2026
commit 671f3beeb4bdce445a41072282408fa0a0eedddb
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.8.15
- pip<=21.2.4
- python=3.10.15
- pip<=23.3.1
- pip:
- mlflow<3
- cloudpickle==2.2.0
- mlflow==2.17.0
- cloudpickle==2.2.1
- psutil==5.8.0
- scikit-learn==0.24.2
- scikit-learn==1.5.2
- numpy==1.26.4
- pandas==1.5.3
- azureml-ai-monitoring
- azureml-contrib-services
name: mlflow-env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
python: 3.8.15
python: 3.10.15
build_dependencies:
- pip==21.2.4
- setuptools==59.8.0
- wheel==0.38.4
- pip==23.3.1
- setuptools==69.0.2
- wheel==0.42.0
dependencies:
- -r requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
mlflow
cloudpickle==2.2.0
mlflow==2.17.0
cloudpickle==2.2.1
psutil==5.8.0
scikit-learn==0.24.2
scikit-learn==1.5.2
numpy==1.26.4
pandas==1.5.3
azureml-ai-monitoring
azureml-contrib-services
Loading