"description":"Selector specifying which fields to include in a partial response.",
"location":"query"
},
"key":{
"type":"string",
"description":"API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"location":"query"
},
"oauth_token":{
"type":"string",
"description":"OAuth 2.0 token for the current user.",
"location":"query"
},
"prettyPrint":{
"type":"boolean",
"description":"Returns response with indentations and line breaks.",
"default":"true",
"location":"query"
},
"quotaUser":{
"type":"string",
"description":"Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.",
"location":"query"
},
"userIp":{
"type":"string",
"description":"IP address of the site where the request originates. Use this if you want to enforce per-user limits.",
"description":"Manage your data in Google Cloud Storage"
},
"https://www.googleapis.com/auth/prediction":{
"description":"Manage your data in the Google Prediction API"
}
}
}
},
"schemas":{
"Input":{
"id":"Input",
"type":"object",
"properties":{
"input":{
"type":"object",
"description":"Input to the model for a prediction",
"properties":{
"csvInstance":{
"type":"array",
"description":"A list of input features, these can be strings or doubles.",
"items":{
"type":"any"
}
}
}
}
}
},
"Output":{
"id":"Output",
"type":"object",
"properties":{
"id":{
"type":"string",
"description":"The unique name for the predictive model."
},
"kind":{
"type":"string",
"description":"What kind of resource this is.",
"default":"prediction#output"
},
"outputLabel":{
"type":"string",
"description":"The most likely class [Categorical models only]."
},
"outputMulti":{
"type":"array",
"description":"A list of classes with their estimated probabilities [Categorical models only].",
"items":{
"type":"object",
"properties":{
"label":{
"type":"string",
"description":"The class label."
},
"score":{
"type":"number",
"description":"The probability of the class.",
"format":"double"
}
}
}
},
"outputValue":{
"type":"number",
"description":"The estimated regression value [Regression models only].",
"format":"double"
},
"selfLink":{
"type":"string",
"description":"A URL to re-request this resource."
}
}
},
"Training":{
"id":"Training",
"type":"object",
"properties":{
"id":{
"type":"string",
"description":"The unique name for the predictive model."
},
"kind":{
"type":"string",
"description":"What kind of resource this is.",
"default":"prediction#training"
},
"modelInfo":{
"type":"object",
"description":"Model metadata.",
"properties":{
"classWeightedAccuracy":{
"type":"number",
"description":"Estimated accuracy of model taking utility weights into account [Categorical models only].",
"format":"double"
},
"classificationAccuracy":{
"type":"number",
"description":"A number between 0.0 and 1.0, where 1.0 is 100% accurate. This is an estimate, based on the amount and quality of the training data, of the estimated prediction accuracy. You can use this is a guide to decide whether the results are accurate enough for your needs. This estimate will be more reliable if your real input data is similar to your training data [Categorical models only].",
"format":"double"
},
"confusionMatrix":{
"type":"object",
"description":"An output confusion matrix. This shows an estimate for how this model will do in predictions. This is first indexed by the true class label. For each true class label, this provides a pair {predicted_label, count}, where count is the estimated number of times the model will predict the predicted label given the true label. Will not output if more then 100 classes [Categorical models only].",