File size: 362 Bytes
e04b89d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
# Global state for the application

# The Master Identity Database (Loaded from embeddings.pickle)
# Format: { "Name": { "ArcFace": [vec], "Facenet512": [vec] } }
KNOWN_VECTORS = {}

# Keep track of recently seen people to prevent log spam
last_seen = {}
attendance_memory = []

# List of all active websocket connections to broadcast to
active_connections = []