Skip to content

Commit 59d8352

Browse files
author
Leon Kaiser
committed
Add examples directory with apple_qml content
1 parent fb7e8f2 commit 59d8352

20 files changed

+6255
-0
lines changed

examples/apple_qml/.gitignore

Lines changed: 288 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,288 @@
1+
# Apple QML System - Git Ignore File
2+
3+
# === PYTHON ===
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
9+
# C extensions
10+
*.so
11+
12+
# Distribution / packaging
13+
.Python
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
wheels/
26+
pip-wheel-metadata/
27+
share/python-wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
MANIFEST
32+
33+
# PyInstaller
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.nox/
45+
.coverage
46+
.coverage.*
47+
.cache
48+
nosetests.xml
49+
coverage.xml
50+
*.cover
51+
*.py,cover
52+
.hypothesis/
53+
.pytest_cache/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
db.sqlite3
63+
db.sqlite3-journal
64+
65+
# Flask stuff:
66+
instance/
67+
.webassets-cache
68+
69+
# Scrapy stuff:
70+
.scrapy
71+
72+
# Sphinx documentation
73+
docs/_build/
74+
75+
# PyBuilder
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
.python-version
87+
88+
# pipenv
89+
Pipfile.lock
90+
91+
# PEP 582
92+
__pypackages__/
93+
94+
# Celery stuff
95+
celerybeat-schedule
96+
celerybeat.pid
97+
98+
# SageMath parsed files
99+
*.sage.py
100+
101+
# Environments
102+
.env
103+
.venv
104+
env/
105+
venv/
106+
ENV/
107+
env.bak/
108+
venv.bak/
109+
110+
# Spyder project settings
111+
.spyderproject
112+
.spyproject
113+
114+
# Rope project settings
115+
.ropeproject
116+
117+
# mkdocs documentation
118+
/site
119+
120+
# mypy
121+
.mypy_cache/
122+
.dmypy.json
123+
dmypy.json
124+
125+
# Pyre type checker
126+
.pyre/
127+
128+
# === QUANTUM COMPUTING SPECIFIC ===
129+
# Qiskit cache
130+
.qiskit/
131+
qiskit.log
132+
133+
# IBM Quantum credentials (NEVER commit these!)
134+
qiskit-ibm-credentials
135+
.qiskit-ibm-*
136+
quantum_credentials.json
137+
ibm_quantum_credentials
138+
139+
# Quantum circuit drawings
140+
*.qasm
141+
circuit_*.png
142+
circuit_*.pdf
143+
144+
# === PROJECT SPECIFIC ===
145+
# Output directories
146+
outputs/
147+
results/
148+
experiments/
149+
benchmarks/
150+
151+
# Model files
152+
models/
153+
*.pkl
154+
*.pickle
155+
*.joblib
156+
*.h5
157+
*.model
158+
159+
# Data files (depending on data policy)
160+
data/real/
161+
data/private/
162+
*.csv
163+
*.json
164+
*.npy
165+
*.npz
166+
167+
# Visualization outputs
168+
visualizations/
169+
plots/
170+
figures/
171+
*.png
172+
*.pdf
173+
*.svg
174+
*.eps
175+
176+
# Logs
177+
logs/
178+
*.log
179+
training_*.log
180+
experiment_*.log
181+
182+
# Cache directories
183+
cache/
184+
.cache/
185+
__pycache__/
186+
187+
# Temporary files
188+
temp/
189+
tmp/
190+
*.tmp
191+
*.temp
192+
193+
# === DEVELOPMENT ===
194+
# IDE files
195+
.vscode/
196+
.idea/
197+
*.swp
198+
*.swo
199+
*~
200+
201+
# OS generated files
202+
.DS_Store
203+
.DS_Store?
204+
._*
205+
.Spotlight-V100
206+
.Trashes
207+
ehthumbs.db
208+
Thumbs.db
209+
210+
# === DOCUMENTATION ===
211+
# Sphinx build
212+
docs/_build/
213+
docs/build/
214+
215+
# LaTeX
216+
*.aux
217+
*.bbl
218+
*.blg
219+
*.fdb_latexmk
220+
*.fls
221+
*.log
222+
*.out
223+
*.toc
224+
225+
# === CONFIGURATION ===
226+
# Local configuration files
227+
config_local.yaml
228+
local_config.yaml
229+
.env.local
230+
231+
# Secrets and credentials
232+
secrets/
233+
credentials/
234+
api_keys/
235+
*.key
236+
*.pem
237+
*.crt
238+
239+
# === TESTING ===
240+
# Test outputs
241+
test_outputs/
242+
test_results/
243+
.coverage_html/
244+
245+
# === PROFILING ===
246+
# Performance profiling
247+
*.prof
248+
*.profile
249+
profiling_results/
250+
251+
# === NOTEBOOKS ===
252+
# Jupyter Notebook outputs
253+
*-checkpoint.ipynb
254+
notebook_outputs/
255+
256+
# === DEPLOYMENT ===
257+
# Docker
258+
Dockerfile.local
259+
docker-compose.override.yml
260+
261+
# Kubernetes
262+
*.local.yaml
263+
264+
# === MISC ===
265+
# Backup files
266+
*.backup
267+
*.bak
268+
*.old
269+
270+
# Archive files
271+
*.zip
272+
*.tar.gz
273+
*.rar
274+
275+
# Large files (use Git LFS if needed)
276+
*.large
277+
278+
# === PROJECT SPECIFIC PATTERNS ===
279+
# Apple QML specific ignores
280+
apple_qml_output/
281+
quantum_experiments/
282+
training_runs/
283+
hyperparameter_sweeps/
284+
285+
# Specific file patterns
286+
*_checkpoint_*
287+
experiment_*_results.json
288+
model_weights_*.npy

0 commit comments

Comments
 (0)