Files
TinyTorch/.gitignore
Vijay Janapa Reddi a4e0a34922 Update gitignore for NBGrader and virtual environment
- Add .venv/ to gitignore for virtual environment files
- Add gradebook.db* to gitignore for NBGrader database files
- Add assignments/submitted/, assignments/autograded/, assignments/feedback/ to gitignore
- Keep assignments/source/ and assignments/release/ tracked for educational content
2025-09-16 02:34:10 -04:00

171 lines
2.0 KiB
Plaintext

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
_docs/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# celery beat schedule file
celerybeat-schedule
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
tinytorch-env/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Logs
*.log
logs/
# TinyTorch specific
checkpoints/
experiments/
runs/
wandb/
# nbdev specific - we keep notebooks and exported Python code
# Everything else is auto-generated and shouldn't be tracked
# OLD STRUCTURE - Remove these when migrating
# modules/ - Now using modules/ for educational structure
# We now use notebooks/ and let nbdev handle exports
# Training artifacts
*.pth
*.pt
*.ckpt
model_*.json
training_*.json
# Data (too large for git)
data/
datasets/
*.csv
*.npz
*.npy
*.pickle
*.pkl
# Temporary files
tmp/
temp/
*.tmp
# Virtual environment
.venv/
# NBGrader database files
gradebook.db*
# NBGrader temporary files
assignments/submitted/
assignments/autograded/
assignments/feedback/