Skip to content

Commit

Permalink
Add autologger_settings for CI (#20302)
Browse files Browse the repository at this point in the history
* Add autologger_settings for CI

Add settings to opt-in/out of default mlflow autologger on CIs.

* update machinelearningservices.json

* Add for command job

* fix comma

* Add autologger for command job

* fix CI failures

* Remove mfe.json from PR

* Remove whitespace

* Update custom-words.txt

* Delete incorrect custom-words.txt
  • Loading branch information
prakharg-msft authored Sep 21, 2022
1 parent 51dd8c2 commit c186142
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 1 deletion.
3 changes: 2 additions & 1 deletion custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ autogenerate
autogenerated
Autogrow
autokey
autologger
Automanage
automations
autopatching
Expand Down Expand Up @@ -2702,4 +2703,4 @@ Skolt
Thangmi
Tuvan
Uyghur
Paramter
Paramter
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"id": "test-subnet-resource-id"
},
"applicationSharingPolicy": "Personal",
"autologgerSettings": {
"mlflowAutologger": "Enabled"
},
"sshSettings": {
"sshPublicAccess": "Disabled"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@
"workerCount": 1,
"parameterServerCount": 1
},
"autologgerSettings": {
"mlflowAutologger": "Enabled"
},
"limits": {
"timeout": "PT5M",
"jobLimitsType": "Command"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3707,6 +3707,11 @@
"modelAsString": true
}
},
"autologgerSettings": {
"description": "Specifies settings for autologger.",
"$ref": "#/definitions/ComputeInstanceAutologgerSettings",
"x-nullable": true
},
"sshSettings": {
"description": "Specifies policy and settings for SSH access.",
"$ref": "#/definitions/ComputeInstanceSshSettings",
Expand Down Expand Up @@ -5118,6 +5123,24 @@
}
}
},
"ComputeInstanceAutologgerSettings": {
"type": "object",
"description": "Specifies settings for autologger.",
"properties": {
"mlflowAutologger": {
"type": "string",
"description": "Indicates whether mlflow autologger is enabled for notebooks.",
"enum": [
"Enabled",
"Disabled"
],
"x-ms-enum": {
"name": "mlflowAutologger",
"modelAsString": true
}
}
}
},
"ComputeInstanceSshSettings": {
"type": "object",
"description": "Specifies policy and settings for SSH access.",
Expand Down

0 comments on commit c186142

Please sign in to comment.