Skip to content

Commit

Permalink
Merge pull request Azure#10 from angaivor/model_compose_fixes
Browse files Browse the repository at this point in the history
Minor fixes in compose contract
  • Loading branch information
ramparab authored Apr 16, 2020
2 parents 7312556 + 92e379d commit e8f1f3b
Showing 1 changed file with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -958,6 +958,10 @@
"description": "Use label file for training a model.",
"type": "boolean",
"default": false
},
"modelName": {
"description": "Optional user defined model name.",
"type": "string"
}
}
},
Expand Down Expand Up @@ -1071,6 +1075,16 @@
"description": "Date and time (UTC) when the status was last updated.",
"type": "string",
"x-nullable": false
},
"modelName": {
"type": "string",
"description": "Optional user defined model name."
},
"composedNames": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
Expand Down Expand Up @@ -1134,7 +1148,7 @@
"trainResult": {
"$ref": "#/definitions/TrainResult"
},
"composedTrainedResults": {
"composedTrainResults": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/TrainResult"
Expand Down Expand Up @@ -1264,6 +1278,10 @@
"items": {
"type": "string"
}
},
"modelName": {
"description": "Optional user-defined model name.",
"type": "string"
}
}
},
Expand Down Expand Up @@ -1722,6 +1740,11 @@
"additionalProperties": {
"$ref": "#/definitions/FieldValue"
}
},
"docTypeConfidence": {
"format": "double",
"description": "Predicted document type confidence.",
"type": "number"
}
}
},
Expand Down

0 comments on commit e8f1f3b

Please sign in to comment.