-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
56 lines (45 loc) · 908 Bytes
/
.gitignore
File metadata and controls
56 lines (45 loc) · 908 Bytes
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
tmp*
*.pyc
*.pyo
*.pyd
*.pyw
*.pyz
*.pywz
__pycache__
*.DS_Store
*.ipynb
*.ipynb_checkpoints
*.ipynb_checkpoints_old
*.ipynb_checkpoints_old_old
.cache
.vscode
*/**.git/
**/*.json
**/*.jsonl
**/**/*.json
walkthrough.py
walkthrough/
**/_*/
**/*.backup
outputs*/
visualize/outputs/*
**/outputs/*
**/*.png
**/*.svg
src/
*.pdf
# Exceptions - files we want to track
# Make the exclusions more specific to avoid tracking everything in outputs/
!outputs/20llms_greedy/2025-05-12-17-13-20/overall_stats.json
# We need these to unignore the specific file above
!outputs/
!outputs/20llms_greedy/
!outputs/20llms_greedy/2025-05-12-17-13-20/
# Re-ignore everything else in these directories
outputs/*/
!outputs/20llms_greedy/
outputs/20llms_greedy/*/
!outputs/20llms_greedy/2025-05-12-17-13-20/
outputs/20llms_greedy/2025-05-12-17-13-20/*
!outputs/20llms_greedy/2025-05-12-17-13-20/overall_stats.json
ignored/