Skip to content
Merged
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1b40ff3
Add labeling jobs operations in spec and examples
yetamsft Sep 22, 2020
44754af
Fix labeling job id
yetamsft Sep 22, 2020
3a1b1ac
move to jobs.json following codeJob pattern
yetamsft Sep 23, 2020
d28387f
fix eol
yetamsft Sep 23, 2020
c530ef0
Fix readme.md
yetamsft Sep 23, 2020
0195cf9
Merge pull request #1 from Azure/master
yetamsft Sep 23, 2020
8fad71b
merge from master
yetamsft Sep 23, 2020
dfbddc6
Fix spec failures
yetamsft Sep 23, 2020
1dd464f
fix spec
yetamsft Sep 23, 2020
04539b0
Fix deleteLabelingJob
yetamsft Sep 23, 2020
424e601
Fix status message list
yetamsft Sep 23, 2020
3be819d
fix
yetamsft Sep 23, 2020
1d6e18e
Fix prettier
yetamsft Sep 23, 2020
b532f3b
handle polymorphic objects
yetamsft Sep 23, 2020
c333f2b
Fix discriminator
yetamsft Sep 23, 2020
9ee5b6c
Fix polyphorphic def
yetamsft Sep 23, 2020
8fcea07
Fix
yetamsft Sep 24, 2020
f6965c8
Fix
yetamsft Sep 24, 2020
4aa2fe1
fix
yetamsft Sep 24, 2020
0c2b33e
Merge pull request #2 from Azure/master
yetamsft Sep 24, 2020
76fa605
Merge branch 'master' into users/yeta/LabelingP1
yetamsft Sep 24, 2020
b840956
fix
yetamsft Sep 24, 2020
52ab95d
Fix lintdiff error
yetamsft Sep 24, 2020
e1f338e
Fix conflict
yetamsft Sep 24, 2020
8565cde
Fix LintDiff
yetamsft Sep 24, 2020
9e26ec3
Fix LintDiff
yetamsft Sep 24, 2020
e93ba87
Remove id and continuation token. Address comments
yetamsft Sep 28, 2020
fbd4e08
Fix LintDiff
yetamsft Sep 28, 2020
fb8079e
Fix
yetamsft Sep 28, 2020
4e77fd8
Update azuresourceschema.md
yetamsft Sep 28, 2020
b1aee9e
Fix LintDiff
yetamsft Sep 28, 2020
7a24767
Fix LintDiff
yetamsft Sep 28, 2020
c08acb8
Fix LintDiff
yetamsft Sep 28, 2020
25c5771
Merge branch 'master' into users/yeta/LabelingP1
yetamsft Feb 2, 2021
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
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1210,6 +1210,7 @@ prebuilts
precache
preconfigured
preflight
prelabel
preload
preloading
prem
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,223 @@
{
"parameters": {
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "workspace-1234",
"workspaceName": "testworkspace",
"api-version": "2020-09-01-preview",
"labelingJobId": "testLabelingJob",
"body": {
"properties": {
"datasetConfiguration": {
"assetName": "testdataasset",
"enableIncrementalDatasetRefresh": true,
"datasetVersion": "1"
},
"mlAssistConfiguration": {
"inferencingComputeBinding": {
"computeId": "inferencingcompute"
},
"trainingComputeBinding": {
"computeId": "trainingcompute"
},
"modelNamePrefix": "testmodel_1",
"prelabelAccuracyThreshold": 0.8,
"mlAssistEnabled": true
},
"jobInstructions": {
"uri": "https://www.testjobInstructions.com/labeling1.txt"
},
"labelCategories": {
"testCategory": {
"displayName": "testCategory",
"allowMultiSelect": false,
"classes": {
"testClass1": {
"displayName": "testClass1",
"subclasses": {
"testclass1-1": {
"displayName": "testClass1-1"
}
}
},
"testClass2": {
"displayName": "testClass2"
}
}
}
},
"labelingJobMediaProperties": {
"mediaType": "Image",
"annotationType": "BoundingBox"
},
"properties": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
},
"tags": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
}
}
}
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/labelingJobs/testLabelingJob",
"name": "testLabelingJob",
"type": "Microsoft.MachineLearningServices/workspaces/labelingJobs",
"properties": {
"projectId": "c6e088e2-3b60-45c4-ab33-dd8e99722e6a",
"status": "NotStarted",
"createdTimeUtc": "2020-09-06T00:20:20.327Z",
"progressMetrics": {
"totalDatapointCount": 0,
"completedDatapointCount": 0,
"skippedDatapointCount": 0,
"incrementalDatasetLastRefreshTime": "2020-09-06T00:20:20.327Z"
},
"statusMessages": [
{
"level": "Information",
"code": "Test code",
"message": "Test message",
"createdTimeUtc": "2020-09-06T00:20:20.327Z"
}
],
"datasetConfiguration": {
"assetName": "testdataasset",
"enableIncrementalDatasetRefresh": true,
"datasetVersion": "1"
},
"mlAssistConfiguration": {
"inferencingComputeBinding": {
"computeId": "inferencingcompute"
},
"trainingComputeBinding": {
"computeId": "trainingcompute"
},
"modelNamePrefix": "testmodel_1",
"prelabelAccuracyThreshold": 0.8,
"mlAssistEnabled": true
},
"jobInstructions": {
"uri": "https://www.testjobInstructions.com/labeling1.txt"
},
"labelCategories": {
"testCategory": {
"displayName": "testCategory",
"allowMultiSelect": false,
"classes": {
"testClass1": {
"displayName": "testClass1",
"subclasses": {
"testclass1-1": {
"displayName": "testClass1-1"
}
}
},
"testClass2": {
"displayName": "testClass2"
}
}
}
},
"labelingJobMediaProperties": {
"mediaType": "Image",
"annotationType": "BoundingBox"
},
"properties": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
},
"tags": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
}
}
}
},
"201": {
"body": {
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/labelingJobs/testLabelingJob",
"name": "testLabelingJob",
"type": "Microsoft.MachineLearningServices/workspaces/labelingJobs",
"properties": {
"projectId": "c6e088e2-3b60-45c4-ab33-dd8e99722e6a",
"status": "NotStarted",
"createdTimeUtc": "2020-09-06T00:20:20.327Z",
"progressMetrics": {
"totalDatapointCount": 0,
"completedDatapointCount": 0,
"skippedDatapointCount": 0,
"incrementalDatasetLastRefreshTime": "2020-09-06T00:20:20.327Z"
},
"statusMessages": [
{
"level": "Information",
"code": "Test code",
"message": "Test message",
"createdTimeUtc": "2020-09-06T00:20:20.327Z"
}
],
"datasetConfiguration": {
"assetName": "testdataasset",
"enableIncrementalDatasetRefresh": true,
"datasetVersion": "1"
},
"mlAssistConfiguration": {
"inferencingComputeBinding": {
"computeId": "inferencingcompute"
},
"trainingComputeBinding": {
"computeId": "trainingcompute"
},
"modelNamePrefix": "testmodel_1",
"prelabelAccuracyThreshold": 0.8,
"mlAssistEnabled": true
},
"jobInstructions": {
"uri": "https://www.testjobInstructions.com/labeling1.txt"
},
"labelCategories": {
"testCategory": {
"displayName": "testCategory",
"allowMultiSelect": false,
"classes": {
"testClass1": {
"displayName": "testClass1",
"subclasses": {
"testclass1-1": {
"displayName": "testClass1-1"
}
}
},
"testClass2": {
"displayName": "testClass2"
}
}
}
},
"labelingJobMediaProperties": {
"mediaType": "Image",
"annotationType": "BoundingBox"
},
"properties": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
},
"tags": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
}
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"parameters": {
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "workspace-1234",
"workspaceName": "testworkspace",
"api-version": "2020-09-01-preview",
"labelingJobId": "testLabelingJob"
},
"responses": {
"200": {},
"204": {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
{
"parameters": {
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "workspace-1234",
"workspaceName": "testworkspace",
"api-version": "2020-09-01-preview",
"labelingJobId": "testLabelingJob",
"includeJobInstructions": true,
"includeLabelCategories": true
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/labelingJobs/testLabelingJob",
"name": "testLabelingJob",
"type": "Microsoft.MachineLearningServices/workspaces/labelingJobs",
"properties": {
"projectId": "c6e088e2-3b60-45c4-ab33-dd8e99722e6a",
"status": "NotStarted",
"createdTimeUtc": "2020-09-06T00:20:20.327Z",
"progressMetrics": {
"totalDatapointCount": 0,
"completedDatapointCount": 0,
"skippedDatapointCount": 0,
"incrementalDatasetLastRefreshTime": "2020-09-06T00:20:20.327Z"
},
"statusMessages": [
{
"level": "Information",
"code": "Test code",
"message": "Test message",
"createdTimeUtc": "2020-09-06T00:20:20.327Z"
}
],
"datasetConfiguration": {
"assetName": "testdataasset",
"enableIncrementalDatasetRefresh": true,
"datasetVersion": "1"
},
"mlAssistConfiguration": {
"inferencingComputeBinding": {
"computeId": "inferencingcompute"
},
"trainingComputeBinding": {
"computeId": "trainingcompute"
},
"modelNamePrefix": "testmodel_1",
"prelabelAccuracyThreshold": 0.8,
"mlAssistEnabled": true
},
"jobInstructions": {
"uri": "https://www.testjobInstructions.com/labeling1.txt"
},
"labelCategories": {
"testCategory": {
"displayName": "testCategory",
"allowMultiSelect": false,
"classes": {
"testClass1": {
"displayName": "testClass1",
"subclasses": {
"testclass1-1": {
"displayName": "testClass1-1"
}
}
},
"testClass2": {
"displayName": "testClass2"
}
}
}
},
"labelingJobMediaProperties": {
"mediaType": "Image",
"annotationType": "BoundingBox"
},
"properties": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
},
"tags": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
}
}
}
}
}
}
Loading