-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
74 lines (65 loc) · 834 Bytes
/
.gitignore
File metadata and controls
74 lines (65 loc) · 834 Bytes
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
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# 虚拟环境
venv/
ENV/
env/
.venv/
# IDE
.idea/
.vscode/
.claude/
*.swp
*.swo
# 环境变量
.env
# 模型文件 (太大,不提交)
assets/hubert/*.pt
assets/rmvpe/*.pt
assets/pretrained_v2/*.pth
assets/separator_models/
assets/uvr5_weights/
assets/weights/*.pth
assets/weights/*.index
assets/weights/characters/**/*.pth
assets/weights/characters/**/*.index
assets/weights/official_models/
assets/weights/official_indexes/
# 临时文件
temp/
*.tmp
*.temp
*.log
logs/
# 音频文件
*.wav
*.mp3
*.flac
*.ogg
!assets/test/
# Gradio
flagged/
/venv310
# 上游参考代码 (vendored, 独立 git repo)
_official_rvc/
# 输出文件
output/
outputs/