Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 30 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,38 +1,52 @@
# --- Secrets & Environment (보안) ---
.env
secrets.json
venv/
env/
.venv/
prompt_lab/

Cyberpunk_2077_Steam_Reviews.csv
Cyberpunk_2077_Steam_Reviews.xlsx
cyberpunk_reviews.zip

# --- Logs & Slurm Outputs (로그) ---
logs/
*.log
*.out
*.err
team*_run.log
team*_async.log
team*_experiment.log
experiment.log

# --- Python Cache (파이썬 자동 생성) ---
__pycache__/
*.pyc
.ipynb_checkpoints/

# --- OS & IDE Junk (운영체제/에디터 쓰레기 파일) ---
.DS_Store
__MACOSX/
._*
.vscode/

venv/
env/
.venv/
prompt_lab/
archive/
*.log
team*_run.log
team*_async.log
team*_experiment.log
experiment.log
# --- Large Data Files (데이터셋 - 용량 큼) ---
Cyberpunk_2077_Steam_Reviews.csv
Cyberpunk_2077_Steam_Reviews.xlsx
# 모든 zip 파일 무시 (chroma_db.zip 등 포함)
*.zip

# --- Specific Dataset Folders ---
datasets/chroma_db/
datasets/reviews/
datasets/chroma_db_backup_*/

models/
archive/

# --- Scripts & Temp Files (스크립트) ---
# 실행 스크립트 무시
*.sh
# 임시 확인용 파이썬 파일 무시
check_freeze.py
.vscode/

# Ignore CSV results in team folders
static_zero_shot/*.csv
time_aware_rag/*.csv
time_aware_rag/*.csv
Loading