-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
127 lines (104 loc) · 1.89 KB
/
.gitignore
File metadata and controls
127 lines (104 loc) · 1.89 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
# User data and experiments (contains identifying info)
server/users/
server/users2/
users/
users2/
# Private keys and certificates
*.pem
private.pem
certificate.pem
# Config files that may contain sensitive info
server/config.json
server/config copy.json
server/lastExp.json
config.json
# Jupyter notebooks (may contain personal data)
*.ipynb
# Log files
log/
logs/
*.log
# Data directories
data/
dataset/
server/data/
# Build outputs
dist/
build/
client/dist/
# Frontend development artifacts
frontend/
client-files/
# Python cache
__pycache__/
*.py[cod]
*$py.class
*.so
.pytest_cache/
.mypy_cache/
# Node.js
node_modules/
pnpm-lock.yaml
package-lock.json
yarn.lock
# Environment files
.env
.env.local
.env.*.local
# IDE/Editor
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Test files
server/test_*.py
server/push_test.py
# Unused server files
server/gpu.py
server/hpo_state.py
server/nlp.py
server/parse.py
server/run_glue.py
server/run_glue_no_trainer.py
server/worker_wo_finegrain.py
# Icon generation scripts with local paths
client/generate_icons.py
client/generate_icons_pillow.py
client/generate_ios_icons.py
client/create_icons.py
# Backup files
*.bak
*.backup
*copy*
* copy*
# Prototype files
server/prototypes/
# BOHB original library (using modified version in server/bohb/)
server/bohb-hpo-master/
# Server package files
server/package.json
server/pnpm-lock.yaml
# CLIP and other model-specific data
server/clip/
# Kernel files (keep only __init__.py and kernel.py)
server/kernels/cifar10_kernel.py
server/kernels/clip_kernel.py
server/kernels/mnist_kernel.py
server/kernels/nlp_kernel.py
server/kernels/segmentation_kernel.py
server/kernels/segmentation_kernel2.py
server/kernels/__init__2.py
server/kernels/common/
server/kernels/dataset/
server/kernels/model/
server/kernels/models/
server/kernels/training/
# Temporary files
*.tmp
*.temp
# Claude Code instructions
CLAUDE.md