66 lines
676 B
Plaintext
66 lines
676 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
*.ipynb_checkpoints/
|
|
|
|
# Data files (keep structure, ignore large files)
|
|
data/raw/*.csv
|
|
data/processed/*.csv
|
|
data/raw/*.parquet
|
|
data/processed/*.parquet
|
|
hull-tactical-market-prediction/
|
|
|
|
# Model files
|
|
models/*.pkl
|
|
models/*.h5
|
|
models/*.pt
|
|
models/*.pth
|
|
models/*.joblib
|
|
|
|
# Outputs
|
|
outputs/*.png
|
|
outputs/*.jpg
|
|
outputs/*.csv
|
|
outputs/*.html
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|