You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
1.4 KiB
105 lines
1.4 KiB
# -----------------------------
|
|
# OS 기본 파일
|
|
# -----------------------------
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# -----------------------------
|
|
# Python 환경
|
|
# -----------------------------
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
|
|
# 가상환경
|
|
env/
|
|
venv/
|
|
.mipenv
|
|
/*.egg-info/
|
|
.eggs/
|
|
|
|
# Poetry / pipenv
|
|
.cache/
|
|
.venv/
|
|
|
|
# -----------------------------
|
|
# IDE / Editor 관련
|
|
# -----------------------------
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# -----------------------------
|
|
# 데이터, 모델, 체크포인트
|
|
# -----------------------------
|
|
# 모델 파일
|
|
*.pt
|
|
*.pth
|
|
*.ckpt
|
|
*.onnx
|
|
*.trt
|
|
*.pb
|
|
*.h5
|
|
|
|
# 학습 관련 출력
|
|
runs/
|
|
logs/
|
|
tensorboard/
|
|
lightning_logs/
|
|
checkpoint/
|
|
checkpoints/
|
|
|
|
# 데이터셋 (원하면 제외 가능)
|
|
data/
|
|
dataset/
|
|
datasets/
|
|
|
|
# 결과물 (이미지/비디오/추론 결과)
|
|
outputs/
|
|
results/
|
|
inference/
|
|
*.jpg
|
|
*.png
|
|
*.jpeg
|
|
*.bmp
|
|
*.mp4
|
|
*.avi
|
|
|
|
# -----------------------------
|
|
# PyTorch & HuggingFace 캐시
|
|
# -----------------------------
|
|
/root/.cache/torch/
|
|
/cache/
|
|
/.torch/
|
|
huggingface/
|
|
transformers/
|
|
|
|
# -----------------------------
|
|
# Jupyter 관련
|
|
# -----------------------------
|
|
.ipynb_checkpoints/
|
|
*.ipynb~
|
|
|
|
# -----------------------------
|
|
# 컴파일/빌드 아티팩트
|
|
# -----------------------------
|
|
build/
|
|
dist/
|
|
*.bin
|
|
|
|
# -----------------------------
|
|
# Temp 파일
|
|
# -----------------------------
|
|
tmp/
|
|
temp/
|
|
*.log
|
|
|
|
# -----------------------------
|
|
# 환경 변수 파일
|
|
# -----------------------------
|
|
.env
|
|
.env.*
|