Update: add ignore file
Browse files- .gitignore +52 -0
.gitignore
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python
|
2 |
+
__pycache__
|
3 |
+
*.pyc
|
4 |
+
*.egg-info
|
5 |
+
dist
|
6 |
+
|
7 |
+
# Log
|
8 |
+
logs
|
9 |
+
test_scripts
|
10 |
+
*.log
|
11 |
+
*.log.*
|
12 |
+
# *.json
|
13 |
+
# *.jsonl
|
14 |
+
|
15 |
+
# Data
|
16 |
+
!**/alpaca-data-conversation.json
|
17 |
+
# Editor
|
18 |
+
.idea
|
19 |
+
*.swp
|
20 |
+
.vscode
|
21 |
+
|
22 |
+
# Other
|
23 |
+
.DS_Store
|
24 |
+
wandb
|
25 |
+
output
|
26 |
+
|
27 |
+
checkpoints
|
28 |
+
project_checkpoints
|
29 |
+
debug_checkpoints
|
30 |
+
playground/data
|
31 |
+
playground/cc3m_llava34b_cap
|
32 |
+
ckpts*
|
33 |
+
|
34 |
+
.ipynb_checkpoints
|
35 |
+
chunyl_scripts
|
36 |
+
*.ipynb
|
37 |
+
|
38 |
+
# DevContainer
|
39 |
+
!.devcontainer/*
|
40 |
+
|
41 |
+
# Demo
|
42 |
+
serve_images/
|
43 |
+
notebooks/
|
44 |
+
logs
|
45 |
+
scripts/dist_*
|
46 |
+
logs/
|
47 |
+
submissions/
|
48 |
+
# work_dirs
|
49 |
+
model_ckpt
|
50 |
+
# data dir
|
51 |
+
DATA
|
52 |
+
data_json
|