OBJECT

LibraryConfiguration

link GraphQL Schema definition

1type LibraryConfiguration {
2
3# library configuration id
4id: ID
5
6# ID of the selected library where this config applies to
7libraryId: ID
8
9# ID of the engine category this config applies to
10engineCategoryId: ID
11
12# List of selected engine ids for training
13targetEngineIds: [ID]
14
15# This option is used for Dataset Library Only
16# List of selected engine where tdos are extracted from for training data
17# TDOs are extracted from higher ranked engines first then fallback to the lower
18# ones if the priors don't have any matching tdo
19rankedSourceEngineIds: [ID]
20
21# This option is used for Dataset Library Only
22# Dataset tdos confidence filters
23confidence: DatasetConfidence
24
25}