-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.gitignore
More file actions
111 lines (98 loc) · 1.84 KB
/
Copy path.gitignore
File metadata and controls
111 lines (98 loc) · 1.84 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
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
# Auto-generated version file (from hatch-vcs)
nvflow/_version.py
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
!nvflow/lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual environments
.venv
venv/
ENV/
env/
# UV
.uv/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
# HF / tokenizer / debug caches. Created by ad-hoc local Python sessions
# (e.g. AutoConfig.from_pretrained(..., trust_remote_code=True)) when
# HF_HOME defaults to $cwd/cache. Pipeline runs use the Lustre HF cache,
# never this directory -- keep it out of git to avoid accidental commits.
/cache/
# Data and outputs (customize based on your needs)
/data
/data/
!data/.gitkeep
models
models/
!models/.gitkeep
outputs
outputs/
!outputs/.gitkeep
!outputs/logs/.gitkeep
containers
containers/
!containers/.gitkeep
results/
logs/
*.log
filings*/
# Example recipe - keep sample input data, ignore outputs
nvflow/recipes/*/data/*
!nvflow/recipes/*/data/input/
nvflow/recipes/*/data/input/*
!nvflow/recipes/example/data/input/data.jsonl
# Finance datasets - ignore prepared data (eval.jsonl, stats), keep code
nvflow/recipes/finance/datasets/*/eval.jsonl
nvflow/recipes/finance/datasets/*/eval_stats.json
nvflow/recipes/finance/datasets/*/train.jsonl
nvflow/recipes/finance/datasets/*/test.jsonl
nvflow/recipes/finance/datasets/finance_agent/*.jsonl
nvflow/recipes/finance/datasets/finance_agent/*.csv
nvflow/recipes/finance/datasets/finance_agent/*.json
# Backup files
*.bak
*.bak-*
# OS
.DS_Store
._*
Thumbs.db
# Jupyter
.ipynb_checkpoints/
*.ipynb
# Secrets
.env
*.key
*.pem
credentials.yaml
private_*.yaml
# Cluster configs (only track containers.yaml and template-slurm.yaml)
cluster_configs/*.yaml
!cluster_configs/containers.yaml
!cluster_configs/template-slurm.yaml