-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
188 lines (163 loc) · 5.21 KB
/
.gitignore
File metadata and controls
188 lines (163 loc) · 5.21 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# Ray for Developers - Repository .gitignore
# ============================================================================
# Python
# ============================================================================
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# ============================================================================
# Virtual Environments
# ============================================================================
.venv/
venv/
ENV/
env/
.env
.claude/
# ============================================================================
# IDEs and Editors
# ============================================================================
.vscode/
.idea/
*.swp
*.swo
*~
# ============================================================================
# OS Files
# ============================================================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# ============================================================================
# Jupyter Notebooks
# ============================================================================
.ipynb_checkpoints/
# Note: Keep tracked notebooks, ignore only checkpoints
# ============================================================================
# Ray
# ============================================================================
/tmp/ray/
ray_results/
.ray/
# ============================================================================
# Model Weights and Checkpoints
# ============================================================================
models/weights/
*.pth
*.pt
*.ckpt
*.h5
*.pb
# ============================================================================
# Logs and Temporary Files
# ============================================================================
*.log
logs/
*.tmp
*.temp
temp/
tmp/
# ============================================================================
# Test and Coverage
# ============================================================================
.coverage
.pytest_cache/
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
.hypothesis/
# ============================================================================
# Documentation Build
# ============================================================================
docs/_build/
site/
# ============================================================================
# Secrets and Config
# ============================================================================
.env
.env.local
secrets.json
config.local.json
# ============================================================================
# Project-Specific: Video Highlight Generator
# ============================================================================
# Raw video files (large downloads)
03-multimodal-data-processing/video-highlight-generator/data/raw/demo/*.mp4
03-multimodal-data-processing/video-highlight-generator/data/raw/demo/*.avi
03-multimodal-data-processing/video-highlight-generator/data/raw/demo/*.mov
03-multimodal-data-processing/video-highlight-generator/data/raw/demo/*.mkv
03-multimodal-data-processing/video-highlight-generator/data/raw/youtube/
03-multimodal-data-processing/video-highlight-generator/data/raw/youtube_test/
# Processed videos and frames
03-multimodal-data-processing/video-highlight-generator/data/processed/**/*
!03-multimodal-data-processing/video-highlight-generator/data/processed/**/.gitkeep
# Pipeline outputs (intermediate and final)
03-multimodal-data-processing/video-highlight-generator/data/pipeline/**/*
!03-multimodal-data-processing/video-highlight-generator/data/pipeline/**/.gitkeep
# Output directory
03-multimodal-data-processing/video-highlight-generator/data/output/**/*
!03-multimodal-data-processing/video-highlight-generator/data/output/**/.gitkeep
# Generated features and highlights
03-multimodal-data-processing/video-highlight-generator/data/features/**/*
!03-multimodal-data-processing/video-highlight-generator/data/features/**/.gitkeep
03-multimodal-data-processing/video-highlight-generator/data/highlights/**/*
!03-multimodal-data-processing/video-highlight-generator/data/highlights/**/.gitkeep
# FFmpeg Temporary Files
*.concat.txt
concat_*.txt
ffmpeg*.log
# Gradio / Web Interface
gradio_videos/
gradio_outputs/
flagged/
# ============================================================================
# Keep Important Files
# ============================================================================
# Ensure these are tracked
!.gitkeep
!README.md
!requirements.txt
!pyproject.toml
# Ignore the recordings directory
recordings/
!recordings/.gitkeep
# ============================================================================
# Project-Specific: Distributed Training
# ============================================================================
# Downloaded datasets (CIFAR-10, etc.)
02-distributed-training/**/data/
02-distributed-training/**/*.lock
~/data/
# Training outputs
02-distributed-training/**/*.pth
02-distributed-training/**/checkpoint_*.pth
02-distributed-training/**/ray_results/
02-distributed-training/**/.ray/
# Temporary Python cache
02-distributed-training/**/__pycache__/