-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
59 lines (50 loc) · 1.23 KB
/
Copy path.gitignore
File metadata and controls
59 lines (50 loc) · 1.23 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
# Python bytecode
__pycache__/
*.py[cod]
*$py.class
# Distribution / packaging
*.egg-info/
dist/
build/
# Virtual environments
.venv/
.phase_venv/
.venv-judge/
venv/
env/
# IDE / editor
.idea/
.vscode/
*.swp
*.swo
*~
# OS artifacts
.DS_Store
Thumbs.db
# Environment variables (contains API keys)
# `.env` itself is tracked as a placeholder template — DO NOT commit real
# secrets into it. Instead, copy `.env` to `.env.local` (or any of the
# patterns below) and put your real keys there.
.env.local
.env.*.local
.env.secret
# Huggingface / model caches
.cache/
*.lock
# Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Logs and temporary files
*.log
wandb/
runs/
# Large external artefacts — shipped separately via Hugging Face, not Git.
# `LongEvoRoleBench/` → IAAR-Shanghai/LongEvoRoleBench (dataset)
# `phase_tree_models/` → IAAR-Shanghai/phase_tree_models (model)
# `phase_tree_models_full/` → local-only ablation grid (not released)
# `models/` → vendor base models (Qwen2.5-7B-Instruct, Qwen3-Embedding-4B, ...)
# `results/` → IAAR-Shanghai/phase_tree_results (dataset)
LongEvoRoleBench/
phase_tree_models/
phase_tree_models_full/
models/
results/