-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
28 lines (23 loc) · 708 Bytes
/
Copy path.gitignore
File metadata and controls
28 lines (23 loc) · 708 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
# My Kaggle API Key
.kaggle/
.kaggle/kaggle.json
# Other unnecessary environment variables
.env
# Python cache
__pycache__/
*.py[cod]
# Ignore local virtual environments if added later
# venv/
# env/
# Raw data files (downloadable through setup script)
data/raw/
# Processed data (can be replicated through data proccecssing script after downloading the raw data)
data/processed/
# Trained model weights and tokenizer files (large and reproducible)
# These may be generated locally or saved after fine-tuning a Hugging Face model
models/
# Evaluation outputs, intermediate results, plots, logs, etc.
# Not needed for reproducibility and can be recreated
outputs/
# VS Code configs nonessential
.vscode/