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
# Build output
/target
# Cargo lock (omitted for libraries; apps should keep it)
Cargo.lock
# ONNX model files — large binaries, never commit
*.onnx
examples/*.onnx
# Generated / downloaded model directories
/test_models/
/eval/models/
# Python virtual environments
.venv/
/test_venv/
/test_venv2/
venv/
env/
# Python cache
/__pycache__/
*.py
.pytest_cache/
# Scratch / temp files
map.txt
test-config.yaml
test_python_bindings.py
test.py
.pypirc
# Quantize-rs output directories
/quantized_batch/
/quantized_perchannel/
/config_output/
/output/
# Editors
.vscode/
.idea/
*.swp
*.swo
*~
# Claude Code local config
/.claude
# Keep example YAML configs
!examples/*.yaml
!examples/config.yaml
ARCHITECTURE.md
RELEASING.md
ROADMAP.md