-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
268 lines (236 loc) · 6.7 KB
/
.gitignore
File metadata and controls
268 lines (236 loc) · 6.7 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
# =============================================================================
# Advanced RL Deep Dive — .gitignore
# =============================================================================
# ── Python ──────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.so
*.pyd
# Distribution / Packaging
.Python
build/
dist/
eggs/
.eggs/
*.egg-info/
*.egg
MANIFEST
sdist/
wheels/
pip-wheel-metadata/
share/python-wheels/
# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# ── Jupyter Notebook ─────────────────────────────────────────────────────────
.ipynb_checkpoints/
*/.ipynb_checkpoints/
profile_default/
ipython_config.py
# ── NumPy / PyTorch / RL framework cache ─────────────────────────────────────
*.npy
*.npz
*.pkl
*.pickle
*.joblib
*.pt
*.pth
*.bin
*.safetensors
*.onnx
*.ckpt
# Framework caches (PyTorch, Stable-Baselines3, CleanRL)
.torch_cache/
.sb3_cache/
.cleanrl_cache/
# ── Gymnasium / MuJoCo cache ─────────────────────────────────────────────────
# MuJoCo binary / license files (구버전 호환)
mjkey.txt
mujoco200/
mujoco210/
mjpro150/
.mujoco/
# Gymnasium / Gym 환경 캐시
.gym_cache/
.gymnasium_cache/
# Atari ROM (legal 이슈로 절대 commit 금지)
*.bin
roms/
atari_roms/
# ── Replay buffer / 학습 데이터 ──────────────────────────────────────────────
# Replay buffer 직렬화 (Off-policy: SAC, TD3, DDPG, CQL, TD3+BC)
replay_buffer/
replays/
*.replay
*.buffer
# Trajectory / rollout 저장
trajectories/
rollouts/
demonstrations/
# Offline RL dataset (D4RL, RL Unplugged 등)
# Ch7-01 CQL · TD3+BC · BCQ · IQL 실험에서 사용
d4rl/
rl_unplugged/
offline_data/
*.h5
*.hdf5
# ── Experiment outputs ───────────────────────────────────────────────────────
# 생성된 시각화·학습 곡선·plot (각 챕터)
# Ch1: Performance Difference Lemma · Trust Region bound visualization · KL trajectory
# Ch2: TRPO 의 KL trajectory · CG iteration · line search backtrack 횟수
# Ch3: PPO clipping ratio 분포 · ε ablation · GAE λ 비교
# Ch4: SAC entropy plot · α 자동 튜닝 trajectory · soft Bellman 수렴
# Ch5: TD3 Q-value 과대추정 ablation · target smoothing 효과 · delayed update 비교
# Ch6: MuJoCo 5환경 × 5알고리즘 benchmark · sample efficiency curve
# Ch7: CQL OOD penalty · Dreamer world model rollout · MAML adaptation curve · DPO loss
*.png
*.jpg
*.jpeg
*.pdf
*.gif
*.mp4
*.webm
*.webp
# 훈련 결과 / 체크포인트
results/
outputs/
logs/
checkpoints/
runs/
wandb/
mlruns/
tensorboard/
tb_logs/
lightning_logs/
*.log
*.csv
*.tfevents.*
# 환경별 video recording (gymnasium video wrapper)
videos/
recordings/
*.mov
*.avi
# 재현 실험 산출물 (논문별)
reproductions/kakade2002_apprx/*.pkl
reproductions/schulman2015_trpo/*.pt
reproductions/schulman2017_ppo/*.pt
reproductions/haarnoja2018_sac/*.pt
reproductions/haarnoja2019_sac_auto/*.pt
reproductions/fujimoto2018_td3/*.pt
reproductions/lillicrap2016_ddpg/*.pt
reproductions/espeholt2018_impala/*.pt
reproductions/horgan2018_apex/*.pt
reproductions/kapturowski2019_r2d2/*.pt
reproductions/kumar2020_cql/*.pt
reproductions/fujimoto2021_td3bc/*.pt
reproductions/fujimoto2019_bcq/*.pt
reproductions/kostrikov2022_iql/*.pt
reproductions/hafner2019_dreamer/*.pt
reproductions/schrittwieser2020_muzero/*.pt
reproductions/finn2017_maml/*.pt
reproductions/duan2016_rl2/*.pt
reproductions/christiano2017_rlhf/*.pt
reproductions/ouyang2022_instructgpt/*.pt
reproductions/rafailov2023_dpo/*.pt
# Pretrained weights / reward models
pretrained/
weights/
reward_models/
# ── RLHF / LLM 관련 (Ch7-04) ─────────────────────────────────────────────────
# Reward model · preference dataset · SFT checkpoint
preference_data/
sft_checkpoints/
rm_checkpoints/
# HuggingFace cache (RLHF 실험에서 사용)
.cache/huggingface/
hub/
models--*/
datasets_cache/
# ── Hyperparameter sweeps ────────────────────────────────────────────────────
sweeps/
optuna_studies/
*.db
*.sqlite
*.sqlite3
# ── IDE / Editor ─────────────────────────────────────────────────────────────
# JetBrains (PyCharm, IntelliJ)
.idea/
*.iml
*.iws
*.ipr
# VSCode
.vscode/
*.code-workspace
# Vim / Emacs
*.swp
*.swo
*~
\#*\#
.\#*
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.lnk
# Linux
.directory
# ── Documentation build ──────────────────────────────────────────────────────
docs/_build/
docs/generated/
site/
.mkdocs_cache/
# ── Secrets / Credentials ────────────────────────────────────────────────────
.env.local
.env.*.local
secrets.py
credentials.json
*.pem
*.key
openai_api_key*
hf_token*
wandb_api_key*
# ── GPU / CUDA cache ─────────────────────────────────────────────────────────
.nv_cache/
.nvidia/
*.cu.o
.torch_extensions/
# ── Compiled extensions / build artifacts ────────────────────────────────────
*.ninja
*.ninja_log
*.ninja_deps
# ── Miscellaneous ────────────────────────────────────────────────────────────
.hypothesis/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
.tox/
*.mo
*.pot
# data/ 디렉토리 (학습용 데이터 보존)
data/
datasets/
raw/
processed/
!data/.gitkeep