-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
101 lines (84 loc) · 1.52 KB
/
Copy path.gitignore
File metadata and controls
101 lines (84 loc) · 1.52 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
# 环境变量与本地配置(保留 .env.example)
.env
.env.*
!.env.example
# 构建/产物(递归忽略)
**/dist/
**/build/
**/bin/
**/coverage/
# 依赖与缓存
node_modules/
vendor/
__pycache__/
**/.vite/
**/.vite-temp/
**/.parcel-cache/
# 日志
logs/
**/*.log
# 忽略 IDE 配置
.vscode/
.idea/
# 忽略系统文件
.DS_Store
Thumbs.db
# 其他临时文件
*.swp
*.swo
*.out
tmp/
# Python 虚拟环境
venv/
.venv/
*.egg-info/
# Go 编译产物
backend/main
backend/cmd/api_server/api_server
*.exe
*.exe~
*.dll
*.so
*.dylib
# ========== 数据集与媒体文件 (不上传) ==========
# 视频源文件
data_pipeline/assets/video/*.mp4
data_pipeline/assets/video/*.avi
data_pipeline/assets/video/*.mov
data_pipeline/assets/video/*.mkv
# TalkBank .cha 文件
data_pipeline/assets/cha/*.cha
# 转码后的音频
ai_agent/data/demo/*.wav
ai_agent/data/audio/
# 生成的数据集 (包含本地路径,可重新生成)
ai_agent/data/grand_round_dataset.json
# 生成的数据集 JSON (可选:如果想分享可以注释掉)
# ai_agent/data/grand_round_dataset.json
# 通用媒体文件 (递归忽略)
**/*.mp4
**/*.avi
**/*.mov
**/*.mkv
**/*.wav
**/*.mp3
**/*.flac
# Docker 配置
/etc/docker/daemon.json
# ========== 模型文件 (不上传) ==========
# CosyVoice 预训练模型 (由 ModelScope 自动下载)
ai_agent/pretrained_models/
ai_agent/models/
# 常见模型文件格式(递归忽略)
**/*.pt
**/*.pth
**/*.onnx
**/*.bin
**/*.safetensors
**/*.ckpt
**/*.pb
**/*.h5
**/*.tflite
**/*.gguf
**/*.model
**/*.weights