-
Notifications
You must be signed in to change notification settings - Fork 50
/
cineast.json
110 lines (105 loc) · 2.63 KB
/
cineast.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"database": {
"host": "localhost",
"port": 1865,
"plaintext": true
},
"retriever": {
"threadPoolSize": 2,
"maxResults": 10000,
"resultsPerModule": 5000,
"features": {
"semantic" : [
{"feature": "ConceptMasksAde20k", "weight" : 1.0}
],
"globalcolor": [
{"feature": "AverageColor", "weight": 2.3},
{"feature": "MedianColor", "weight": 1.2},
{"feature": "AverageFuzzyHist", "weight": 0.7}
],
"localcolor": [
{"feature": "AverageColorARP44", "weight": 0.5},
{"feature": "AverageColorGrid8", "weight": 1.8},
{"feature": "CLD", "weight": 1.3},
{"feature": "MedianColorGrid8", "weight": 1.7},
{"feature": "AverageColorRaster", "weight": 1.0}
],
"edge": [
{"feature": "EHD", "weight": 0.7},
{"feature": "DominantEdgeGrid16", "weight": 1.4}
],
"mlt": [
{"feature": "InceptionResnetV2", "weight": 1.0}
],
"audiofingerprint": [
{"feature": "HPCP12Shingle", "weight": 1.0}
],
"ocr": [
{"feature": "OCRSearch", "weight": 1.0}
],
"visualtextcoembedding": [
{"feature": "VisualTextCoEmbedding", "weight": 1.0}
],
"boolean": [
{
"feature": "CollectionBooleanRetriever", "weight": 1.0,
"properties": {
"entity": "cineast_segment",
"attribute": "segmentid,objectid",
"idCol": "segmentid"
}
}
]
}
},
"decoders": {
"VIDEO": {
"decoder": "FFMpegVideoDecoder",
"properties": {
"maxFrameWidth": 640,
"maxFrameHeight": 480
}
},
"IMAGE": {
"decoder": "DefaultImageDecoder",
"properties": {
"bounds": 1024
}
},
"AUDIO": {
"decoder": "FFMpegAudioDecoder",
"properties": {
"samplerate": 44100,
"channels": 2
}
}
},
"extractor": {
"threadPoolSize": 4,
"outputLocation": "out"
},
"api": {
"enableCLI": false,
"enableWebsocket": true,
"enableWebsocketSecure": false,
"enableRest": true,
"enableRestLiveDoc": true,
"enableRestSecure": false,
"enableLegacy": false,
"httpPort": 4567,
"httpsPort": 4568,
"legacyPort": 12345,
"threadPoolSize": 12,
"serveContent": true,
"serveUI": false,
"sessionExtractionConfigLocation": "extraction_config.json",
"uiLocation": "../vitrivr-ng/dist",
"thumbnailLocation": "./thumbnails",
"objectLocation": "./data/",
"objectsFilesAreIDed": false
},
"monitoring":{
"enablePrometheus": false,
"prometheusPort": 4569
}
}