-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
168 lines (148 loc) · 3.69 KB
/
Copy path.gitignore
File metadata and controls
168 lines (148 loc) · 3.69 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
# ===========================
# F1 Digital Twin - .gitignore
# ===========================
# Old project specific
zoom_links.md
IS Project Proposal Vega Sobral Víctor.pdf
f1-dataset/
f1-strategy/weights
yolo-files
documents/dev_docs/tasks
# ===========================
# Data & Models
# ===========================
# Data tracked via Hugging Face Hub — not in git
data/raw/**/*
data/processed/**/*
data/models/**/*
data/cache/**/*
data/f1_cache/**/*
!data/raw/.gitkeep
!data/processed/.gitkeep
!data/models/.gitkeep
!data/cache/.gitkeep
# RAG data — FIA PDFs (~50MB) and Qdrant on-disk index — not in git
data/rag/documents/**/*
data/rag/qdrant_local/**/*
!data/rag/documents/.gitkeep
!data/rag/qdrant_local/.gitkeep
# Old data folders
models/
f1_cache/
# Test fixtures — tiny (< 150 KB) versioned data is allowed in git ON PURPOSE.
# Explicit carve-out from the "data and models live on Hugging Face, not git" rule, so the
# engine and contract test tiers have deterministic inputs (mini race parquet, .sse transcripts,
# canned lap_states, RAG mini-collection). Keep each fixture small; large assets stay on HF.
!/tests/fixtures/
!/tests/fixtures/**
# ===========================
# Notebooks
# ===========================
**/.ipynb_checkpoints/
# Tire degradation notebook outputs (large training artefacts — not tracked)
notebooks/strategy/tire_degradation/outputs/checkpoints_finetuning/
notebooks/strategy/tire_degradation/outputs/logs_finetuning/
notebooks/strategy/tire_degradation/outputs/logs/
notebooks/strategy/tire_degradation/outputs/model_export/
notebooks/strategy/overtake_probability/N11_BUILD_PLAN.md
notebooks/strategy/overtake_probability/N12_BUILD_PLAN.md
# ===========================
# Python
# ===========================
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
*.egg-info/
dist/
build/
.eggs/
# ===========================
# Documentation site (mkdocs)
# ===========================
# mkdocs build output — published to gh-pages automatically by .github/workflows/docs.yml
site/
# Auto-copied by docs/_hooks/copy_external_images.py at build time
docs/_external_images/
# ===========================
# IDE & Editors
# ===========================
.vscode/
.idea/
*.swp
*.swo
*.sublime-workspace
*.sublime-project
.spyderproject
.spyproject
.claude/
# ===========================
# Environment
# ===========================
.env
.env.local
.env.*.local
environment.yml
*.env
# ===========================
# Logs
# ===========================
logs/
*.log
# ===========================
# OS
# ===========================
.DS_Store
Thumbs.db
desktop.ini
# ===========================
# Testing & linting caches
# ===========================
.coverage
coverage.xml
.pytest_cache/
.ruff_cache/
.mypy_cache/
htmlcov/
.tox/
.nox/
# ===========================
# Docker
# ===========================
*.log
docker-compose.override.yml
# ===========================
# Misc
# ===========================
*.bak
*.tmp
*.temp
.cache/
# CatBoost writes per-training metadata here whenever .fit() runs without
# allow_writing_files=False. The dep-imports test suppresses this, but
# any ad-hoc CatBoost run from a notebook / script will recreate it.
catboost_info/
# Notebook Python dumps (read-only knowledge base for Claude)
.nb_py/
# ===========================
# code-review-graph
# ===========================
# Tool working directory (cached graph DB, indexes, intermediate files)
.code-review-graph/
# Persistent knowledge graph DB and generated artifacts (visualize/wiki)
graph.db
graph.db-shm
graph.db-wal
graph_visualization.html
graph_wiki/
# ===========================
# uv (Python package manager)
# ===========================
.uv-cache/
.rtk
# AI assistant project context (kept local)
/CLAUDE.md