-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
47 lines (41 loc) 路 965 Bytes
/
Copy path.gitignore
File metadata and controls
47 lines (41 loc) 路 965 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
# Environments
.env
.venv
env/
venv/
# Python / Auto-generated
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
build/
dist/
# Datasets (Crucial to avoid GitHub size limits)
chembench/datasets/**/raw/*
chembench/datasets/**/processed/*.csv
chembench/datasets/**/processed/*.pt
chembench/datasets/**/processed/*.pkl
chembench/datasets/**/exploratory/*.png
chembench/datasets/**/exploratory/*.pdf
chembench/datasets/chemixhub_source/
# Note: Keep README.md, metadata.json, and SCHEMA.md in dataset folders!
!chembench/datasets/**/README.md
!chembench/datasets/**/processed/metadata.json
!chembench/datasets/**/processed/SCHEMA.md
# Results and Models
results/baselines/*.pth
results/baselines/*.joblib
results/baselines/*.pkl
results/evaluation/**/*.png
results/*.log
# OS generated
.DS_Store
Thumbs.db
# Frontend dependencies and builds
site/node_modules/
site/.next/
site/dist/
site/build/
site/.env.local
site/src/frontend/node_modules/
site/src/frontend/dist/