INPUT_OBJECT

CreateLibraryEngineModel

link GraphQL Schema definition

1input CreateLibraryEngineModel {
4
2# ID of the engine the model is used by
3engineId: ID!
7
5# ID fo the library containing this engine model.
6libraryId: ID!
10
8# Id of the train job.
9trainJobId: ID
12
11trainStatus: LibraryEngineModelTrainStatus
18
13# The URL to a file containing or related to the engine model.
14# Use this field if the data is stored in a separate, internet-accessible
15# location and not managed by Veritone APIs.
16# You may also use `updateLibraryEngineModel` to upload a data file.
17dataUrl: String
21
19# Optional free-form block containing engine-specific metadata.
20jsondata: JSONData
23
22accuracy: Int
25
24configurationId: ID
26}