mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
ML- Fixed the issue with wrong title in predict page (#10467)
* Fixed the issue with wrong title in predict page * Fixed the type of ml settings * Increased timeout * Fixed the bug with R package management and Windows auth * fixed the tests * fixed a typo
This commit is contained in:
@@ -10,7 +10,9 @@
|
||||
"azdata": ">=1.13.0"
|
||||
},
|
||||
"activationEvents": [
|
||||
"onCommand:mls.command.managePackages",
|
||||
"onCommand:ml.command.managePackages",
|
||||
"onCommand:ml.command.predictModel",
|
||||
"onCommand:ml.command.importModel",
|
||||
"onDashboardOpen"
|
||||
],
|
||||
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
||||
@@ -28,66 +30,66 @@
|
||||
"contributes": {
|
||||
"configuration": {
|
||||
"type": "object",
|
||||
"title": "%mls.configuration.title%",
|
||||
"title": "%ml.configuration.title%",
|
||||
"properties": {
|
||||
"machineLearning.enablePython": {
|
||||
"type": "boolean",
|
||||
"default": "true",
|
||||
"description": "%mls.enablePython.description%"
|
||||
"default": true,
|
||||
"description": "%ml.enablePython.description%"
|
||||
},
|
||||
"machineLearning.enableR": {
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "%mls.enableR.description%"
|
||||
"default": false,
|
||||
"description": "%ml.enableR.description%"
|
||||
},
|
||||
"machineLearning.pythonPath": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "%mls.pythonPath.description%"
|
||||
"description": "%ml.pythonPath.description%"
|
||||
},
|
||||
"machineLearning.rPath": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "%mls.rPath.description%"
|
||||
"description": "%ml.rPath.description%"
|
||||
}
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"command": "mls.command.managePackages",
|
||||
"title": "%mls.command.managePackages%",
|
||||
"command": "ml.command.managePackages",
|
||||
"title": "%ml.command.managePackages%",
|
||||
"icon": {
|
||||
"light": "./images/installPackages.svg",
|
||||
"dark": "./images/installPackages.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "mls.command.predictModel",
|
||||
"title": "%mls.command.predictModel%",
|
||||
"command": "ml.command.predictModel",
|
||||
"title": "%ml.command.predictModel%",
|
||||
"icon": {
|
||||
"light": "./images/makePredictions.svg",
|
||||
"dark": "./images/makePredictions.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "mls.command.manageModels",
|
||||
"title": "%mls.command.manageModels%"
|
||||
"command": "ml.command.manageModels",
|
||||
"title": "%ml.command.manageModels%"
|
||||
},
|
||||
{
|
||||
"command": "mls.command.importModel",
|
||||
"title": "%mls.command.importModel%",
|
||||
"command": "ml.command.importModel",
|
||||
"title": "%ml.command.importModel%",
|
||||
"icon": {
|
||||
"light": "./images/registerModel.svg",
|
||||
"dark": "./images/registerModel.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "mls.command.dependencies",
|
||||
"title": "%mls.command.dependencies%"
|
||||
"command": "ml.command.dependencies",
|
||||
"title": "%ml.command.dependencies%"
|
||||
},
|
||||
{
|
||||
"command": "mls.command.enableExternalScript",
|
||||
"title": "%mls.command.enableExternalScript%"
|
||||
"command": "ml.command.enableExternalScript",
|
||||
"title": "%ml.command.enableExternalScript%"
|
||||
}
|
||||
],
|
||||
"dashboard.tabs": [
|
||||
@@ -109,7 +111,7 @@
|
||||
"col": 0,
|
||||
"widget": {
|
||||
"tasks-widget": [
|
||||
"mls.command.managePackages"
|
||||
"ml.command.managePackages"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user