OBJECT

LibraryEngineModel

link GraphQL Schema definition

1type LibraryEngineModel {
2
3id: ID!
4
5createdDateTime: DateTime
6
7modifiedDateTime: DateTime
8
9engineId: ID!
10
11engine: Engine
12
13libraryId: ID!
14
15library: Library
16
17libraryVersion: Int
18
19trainJobId: ID
20
21trainStatus: LibraryEngineModelTrainStatus!
22
23dataUrl: String
24
25# Content type of the data file pointed to by dataUrl.
26# Will be empty if no data file is attached to the engine model.
27contentType: String
28
29jsondata: JSONData
30
31accuracy: Int
32
33configurationId: ID
34
35}