- paper/: 22-page LaTeX framework (7/10 sections complete, compiles cleanly) main.tex + 10 section files + refs.bib + compiled PDF (329KB) - code/scripts/: three English dataset generation & merging scripts generate_english.py / generate_english_targeted.py / merge_v5.py - CLAUDE.md: update paper writing status, add paper/ file map entry - state.md: add section 8 paper writing progress (2026-05-15) - .gitignore: add LaTeX build artifact exclusion rules Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
65 lines
807 B
Plaintext
65 lines
807 B
Plaintext
# === 数据集(体积过大)===
|
|
data/
|
|
code/data/
|
|
|
|
# === 模型权重 ===
|
|
code/checkpoints/
|
|
**/*.pt
|
|
**/*.bin
|
|
**/*.safetensors
|
|
**/*.h5
|
|
|
|
# === Python ===
|
|
**/__pycache__/
|
|
**/*.py[cod]
|
|
**/*.egg-info/
|
|
**/.pytest_cache/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
|
|
# === 虚拟环境 ===
|
|
**/.venv*/
|
|
**/venv/
|
|
**/env/
|
|
|
|
# === 历史压缩包 ===
|
|
tmp/archives/
|
|
sync_v*.tar.gz
|
|
sync_v*.zip
|
|
|
|
# === 大型数据 / 实验日志 ===
|
|
experiments/*.log
|
|
**/*.jsonl
|
|
**/*.json.gz
|
|
wandb/
|
|
|
|
# === 旧方向归档 ===
|
|
旧方向信息/
|
|
|
|
# === 工具配置(用户本地)===
|
|
.claude/
|
|
.playwright-mcp/
|
|
|
|
# === OS / 编辑器 ===
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
|
|
# === 密钥 ===
|
|
.env
|
|
*.env
|
|
|
|
# === LaTeX 编译产物 ===
|
|
paper/*.aux
|
|
paper/*.bbl
|
|
paper/*.blg
|
|
paper/*.log
|
|
paper/*.toc
|
|
paper/*.out
|
|
paper/*.fls
|
|
paper/*.fdb_latexmk
|
|
paper/*.synctex.gz
|