-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitignore
More file actions
174 lines (149 loc) · 2.2 KB
/
Copy path.gitignore
File metadata and controls
174 lines (149 loc) · 2.2 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
.venv/
venv/
grammer/antlr-4.13.1-complete.jar
parser/EdgeFlow*
parser/*.interp
parser/*.tokens
parser/__pycache__/
parser/.antlr/
.coverage
coverage.xml
coverage.svg
coverage/
frontend/node_modules/
frontend/coverage/
**/tsconfig.tsbuildinfo
backend/coverage/
htmlcov/
.pytest_cache/
.mypy_cache/
backend/.pytest_cache/
backend/.mypy_cache/
# Python cache files
__pycache__/
*.py[cod]
*$py.class
**/__pycache__/
# Virtual environments
.venv2/
frontend/.venv2/
.venv_test/
frontend/.venv_test/
# Test and temporary files
*.ef
test_*.ef
sample.ef
# Allow example configuration files
!example_*.ef
# Models - exclude all large model files
*.h5
*.tflite
*.onnx
*.pb
*.pkl
*.joblib
# Allow only small test/example model files
!models/simple_cnn.keras
# Ignore generated files
generated/
# Ignore report files
report.md
# Ignore local model files
models/*.h5
models/*.tflite
models/*.onnx
models/*.pb
models/__pycache__/
# Ignore IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
# Ignore local environment files
.env
.env.local
# Ignore Python cache
__pycache__/
*.py[cod]
*$py.class
**/__pycache__/
!test.tflite
!test_optimized.tflite
!example_*.tflite
# Frontend build files
frontend/.next/
frontend/out/
frontend/build/
# Documentation and summary files (auto-generated)
*_SUMMARY.md
GRAMMAR_VALIDATION_SUMMARY.md
FAST_COMPILER_SUMMARY.md
INTEGRATION_GUIDE.md
# Generated code and artifacts
backend_*/
generated_code/
*.c
*.h
*.cpp
*.hpp
main.c
edge_model.*
Makefile
# Performance and profiling
*.prof
*.perf
performance_*.json
benchmark_*.json
# Device profiles and configurations
device_profiles.json
custom_devices.json
# Test artifacts and temporary files
test_output/
*.test
test_*.py.bak
examples/output/
# Jupyter notebook checkpoints
.ipynb_checkpoints/
# OS and system files
.DS_Store
Thumbs.db
*.pid
*.lock
# Backup and temporary files
*.bak
*.backup
*.orig
*~
.#*
#*#
# Compiled Python extensions
*.so
*.pyd
*.dll
# CI script
check-ci-locally.sh
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
node_modules/