Skip to content

Commit 33fcad3

Browse files
committed
chore: consolidate changelogs into docs/changelogs/, clean up gitignore
- Move all release notes (0.3-0.7) and CHANGELOG.md into docs/changelogs/ - Remove duplicate changelog files from docs/ root and repo root - Remove AGENTS.md and CLAUDE.md from tracking (gitignored for local use) - Reorganize .gitignore: deduplicate entries, add section comments, fix broken inline comment - Update all references in README, docs/README, CONTRIBUTING, and 17 i18n READMEs
1 parent 07bce92 commit 33fcad3

30 files changed

Lines changed: 104 additions & 3838 deletions

.gitignore

Lines changed: 57 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,85 @@
1-
**/.cache
2-
env
1+
# Python
32
*.pyc
4-
output/
5-
data/
6-
lm_cache
7-
.idea
3+
__pycache__
4+
*.egg-info
5+
*.isorted
6+
7+
# Virtual environments
8+
env
9+
venv
10+
.venv
11+
12+
# Build artifacts
813
build
914
dist
1015
!lmms_eval/tui/web/dist
11-
*.egg-info
16+
17+
# Package manager
1218
node_modules/
13-
venv
19+
uv.lock
20+
21+
# IDE / Editor
22+
.idea
1423
.vscode/
15-
temp
16-
__pycache__
1724
.ipynb_checkpoints
18-
temp
19-
.DS_STORE
20-
# IPython
2125
profile_default/
2226
ipython_config.py
27+
28+
# OS
29+
.DS_STORE
30+
31+
# Environment and secrets
32+
.env
33+
34+
# Caches and temp
35+
**/.cache
36+
lm_cache
37+
cache_dir
38+
temp/
39+
outputs/
40+
output/
41+
42+
# Logs
2343
logs/
24-
scripts/
44+
*logs
2545
wandb/
26-
SimSun.ttf
27-
submissions/
28-
lmms_eval/tasks/hallusion_bench/hallusion_output_vs_model.json
29-
lmms_eval/tasks/hallusion_bench/hallusion_output_vd_model.json
3046
zk.log
31-
cache_dir
32-
ckpt
47+
span.log
48+
49+
# Data and models (large / local-only)
50+
data/
3351
pretrained/
52+
ckpt
53+
submissions/
54+
remote_code/*
55+
56+
# External repos cloned locally
3457
LLaVA/
35-
*logs
36-
*.isorted
37-
temp/
3858
InternVL/
39-
logs/
40-
data/
4159
llava-video/
4260
Video-MME/
4361
VATEX/
62+
63+
# Task-specific generated files
64+
lmms_eval/tasks/hallusion_bench/hallusion_output_vs_model.json
65+
lmms_eval/tasks/hallusion_bench/hallusion_output_vd_model.json
4466
lmms_eval/tasks/vatex/__pycache__/utils.cpython-310.pyc
4567
lmms_eval/tasks/mlvu/__pycache__/utils.cpython-310.pyc
4668

69+
# Fonts
70+
SimSun.ttf
71+
72+
# Scripts and workspace (local-only)
4773
scripts/
48-
.env
49-
.venv
50-
outputs/
51-
span.log
52-
uv.lock
5374
workspace/*
75+
docs/plans/
76+
77+
# Agent / AI assistant memory files (user-local, not tracked), we encourage users to design their own agents, and can use our provided skills as reference.
78+
AGENTS.md
79+
CLAUDE.md
5480
.claude/*
5581
!.claude-plugin/
5682
.opencode/
57-
remote_code/*
58-
docs/plans/
5983
.opencode
60-
.worktrees/
61-
AGENTS.md
6284
.ignored/
85+
.worktrees/

AGENTS.md

Lines changed: 0 additions & 185 deletions
This file was deleted.

0 commit comments

Comments
 (0)