Exception:
type: "string"
+ /trainingjobs/metadata/{trainingjob_name}:
+ get:
+ tags:
+ - Training Job
+ summary: "Get metadata for a training job"
+ description: "Fetches accuracy, version, and model download URL for all versions of the specified training job that have a FINISHED state and are not in the deletion process."
+ parameters:
+ - name: "trainingjob_name"
+ in: "path"
+ required: true
+ type: "string"
+ description: "Name of the training job"
+ responses:
+ 200:
+ description: "Successful response with metadata"
+ schema:
+ type: "object"
+ properties:
+ Successed_metadata:
+ type: "array"
+ items:
+ type: "object"
+ properties:
+ accuracy:
+ type: "object"
+ description: "Metrics of the model"
+ version:
+ type: "integer"
+ description: "Version of the training job"
+ url:
+ type: "string"
+ description: "URL for downloading the model"
+ 400:
+ description: "Invalid training job name"
+ schema:
+ type: "object"
+ properties:
+ Exception:
+ type: "string"
+ 404:
+ description: "Training job not found"
+ schema:
+ type: "object"
+ properties:
+ Exception:
+ type: "string"
+ 500:
+ description: "Internal server error"
+ schema:
+ type: "object"
+ properties:
+ Exception:
+ type: "string"
+