返回 JoyAI-Echo
.gitignore
根目录 / .gitignore
1 # --- Python ---
2 __pycache__/
3 *.py[cod]
4 *$py.class
5 *.so
6 .Python
7 *.egg
8 *.egg-info/
9 build/
10 dist/
11 .eggs/
12 .pytest_cache/
13 .mypy_cache/
14 .ruff_cache/
15
16 # --- Virtual envs ---
17 .venv/
18 venv/
19 env/
20 .env
21
22 # --- Editor / OS ---
23 .vscode/
24 .idea/
25 .DS_Store
26 Thumbs.db
27 *.swp
28 *.swo
29
30 # --- Claude Code workspace ---
31 .claude/
32
33 # --- Local user config ---
34 configs/*.local.yaml
35
36 # --- Inference artifacts ---
37 inference_result/
38 outputs/
39 logs/
40 runs/
41 tmp/
42 *.log
43 *.pid
44
45 # --- Model weights / large binaries ---
46 # Checkpoint files are downloaded separately; do not commit.
47 checkpoints/*
48 !checkpoints/.gitkeep
49 !checkpoints/README.md
50 *.safetensors
51 *.pt
52 *.bin
53 *.ckpt
54 *.onnx
55
56 # --- Generated media ---
57 *.mp4
58 *.mov
59 *.avi
60 *.mkv
61 *.wav
62 *.flac
63 *.mp3
64
65 # --- Misc ---
66 *.tmp
67 *.bak
68 node_modules/
69
70 # other
71 condaenv.83aeanp_.requirements.txt
72 scripts/merge_checkpoint.py
72 lines Plain Text