-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
128 lines (112 loc) · 1.31 KB
/
.gitignore
File metadata and controls
128 lines (112 loc) · 1.31 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# 환경 설정 파일
.env
.env.local
.env.production
.env.staging
.env.development
*.env
# 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
MANIFEST
# 가상환경
venv/
ENV/
env/
.venv/
.ENV/
.env/
# IDE 및 에디터
.vscode/
.idea/
*.swp
*.swo
*~
# 데이터 파일들
*.csv
*.json
*.pkl
*.pickle
*.h5
*.hdf5
*.npy
*.npz
*.parquet
*.xlsx
*.xls
*.sqlite
*.db
*.shp
# 머신러닝 모델 파일들
*.model
*.joblib
*.pt
*.pth
*.ckpt
*.pb
*.tflite
*.onnx
models/
checkpoints/
saved_models/
# 로그 파일들
*.log
logs/
log/
# 실험 추적 (MLflow, Weights & Biases 등)
mlruns/
wandb/
.mlflow/
outputs/
.hydra/
# Jupyter Notebook
.ipynb_checkpoints/
# 데이터 디렉토리 (대용량 데이터)
data/raw/
data/processed/
data/external/
datasets/
# Docker 관련
.dockerignore
# 압축 파일
*.zip
*.tar.gz
*.rar
*.7z
# 임시 파일
tmp/
temp/
.tmp/
.temp/
# 시스템 파일
.DS_Store
Thumbs.db
# Elasticsearch 데이터 (ELK 스택)
esdata/
elasticsearch-data/
# 기타 캐시
.cache/
.pytest_cache/
.coverage
htmlcov/
# 설정 백업
*.bak
*.backup