-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.json
More file actions
43 lines (43 loc) · 2.22 KB
/
config.json
File metadata and controls
43 lines (43 loc) · 2.22 KB
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
{
"run_topic": "",
"system": {
"input_fps": 30,
"window_size": 10,
"skip_amount": 10
},
"LLM": "Qwen2.5-VL-3B-Instruct-quantized.w8a8",
"topics": {
"running_example": {
"kafka_topic": "tollbooth_video",
"video_sender": "topics/running_example/data/send_video_red.py",
"queries": {
"stolen_red_cars_physical": "topics/running_example/queries/stolen_red_cars/stolen_red_cars_physical.py"
}
},
"tollbooth": {
"kafka_topic": "tollbooth_video",
"video_sender": "topics/running_example/data/send_video_red.py",
"queries": {
"license_plate_recognition_physical": "topics/tollbooth/queries/license_plate_recognition/license_plate_recognition_physical.py",
"car_color_recognition_physical": "topics/tollbooth/queries/car_color_recognition/car_color_recognition_physical.py",
"car_brand_recognition_physical": "topics/tollbooth/queries/car_brand_recognition/car_brand_recognition_physical.py",
"most_popular_brand_physical": "topics/tollbooth/queries/most_popular_brand/most_popular_brand_physical.py",
"most_popular_color_physical": "topics/tollbooth/queries/most_popular_color/most_popular_color_physical.py",
"most_popular_brand_color_physical": "topics/tollbooth/queries/most_popular_brand_color/most_popular_brand_color_physical.py",
"red_ford_plates_physical": "topics/tollbooth/queries/red_ford_plates/red_ford_plates_physical.py",
"repeating_license_plates_physical": "topics/tollbooth/queries/repeating_license_plates/repeating_license_plates_physical.py",
"unique_license_plates_physical": "topics/tollbooth/queries/unique_license_plates/unique_license_plates_physical.py"
}
},
"volleyball": {
"kafka_topic": "volleyball_video",
"video_sender": "topics/volleyball/data/send_video.py",
"queries": {
"most_offensive_team_physical": "topics/volleyball/queries/most_offensive_team/most_offensive_team_physical.py",
"amount_of_jumping_players_physical": "topics/volleyball/queries/amount_of_jumping_players/amount_of_jumping_players_physical.py",
"spiking_notification_physical": "topics/volleyball/queries/spiking_notification/spiking_notification_physical.py",
"top_3_actions_physical": "topics/volleyball/queries/top_3_actions/top_3_actions_physical.py"
}
}
}
}