forked from Alannikos/FunGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_structure.txt
126 lines (125 loc) · 2.85 KB
/
project_structure.txt
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
.
|-- ASR
| |-- __init__.py
| |-- models
| | `-- sensevoice.py
| |-- readme.md
| `-- weights
| `-- readme.md
|-- Assets
| |-- animation
| | `-- Animation_1.json
| |-- avatar
| | |-- BanterBot.jpg
| | |-- BoostBot.jpg
| | |-- BoostBot_v2.jpg
| | |-- User_v1.jpg
| | |-- person1.png
| | `-- person2.png
| |-- gif
| | |-- BanterBot-7b.gif
| | |-- BoostBot-7b.gif
| | |-- Original_7b_BanterBot.gif
| | `-- Original_7b_BoostBot.gif
| |-- image
| |-- svg
| | |-- FunGPT-logo.svg
| | `-- openxlab_logo.svg
| `-- video
| |-- BanterBot-7b.mp4
| |-- BoostBot-7b.mp4
| |-- Original_7b_BanterBot.mp4
| `-- Original_7b_BoostBot.mp4
|-- Data
| |-- BanterBot
| | |-- feasible_data
| | | `-- readme.md
| | |-- raw
| | | `-- readme.md
| | |-- readme.md
| | |-- sample
| | | `-- readme.md
| | |-- scripts
| | | |-- filter_bad_from_conv_data.py
| | | |-- filter_sensitive_words_from_conv_data.py
| | | |-- generate_mutil_conv_chatglm.py
| | | |-- generate_mutil_topic_chatglm.py
| | | |-- generate_self_congnitive_data.py
| | | `-- merge_conv_data_finetune.py
| | `-- sensitive_words
| | `-- readme.md
| `-- BoostBot
| |-- feasible_data
| | `-- readme.md
| |-- raw
| | `-- topic.txt
| |-- sample
| | `-- multi_conversation.jsonl
| `-- scripts
| |-- generate_mutil_conv_chatglm.py
| |-- generate_mutil_topic_chatglm.py
| |-- generate_self_congnitive_data.py
| `-- merge_conv_data_finetune.py
|-- Docs
| |-- pictures
| | `-- FunGPT.png
| |-- readme.md
| `-- user_guides
| `-- readme.md
|-- Finetune
| |-- BanterBot
| | `-- internlm2_5_chat_7b_qlora_alpaca_e3_copy.py
| |-- BaseModel
| | `-- readme.md
| `-- BoostBot
| `-- internlm2_5_chat_7b_qlora_alpaca_e3_copy.py
|-- LICENSE
|-- LLM
| |-- __init__.py
| |-- models
| | `-- internlm2_5_7b_chat.py
| |-- readme.md
| |-- templates
| | `-- template.py
| `-- weights
| `-- readme.md
|-- README.md
|-- README_en.md
|-- README_zh.md
|-- TTS
| |-- __init__.py
| |-- models
| | `-- chattts.py
| |-- readme.md
| `-- weights
| `-- readme.md
|-- Test
| |-- ASR
| | |-- example.py
| | `-- test_wav.wav
| |-- TTS
| | `-- example.ipynb
| `-- readme.md
|-- Utils
| |-- common_utils.py
| |-- configs.py
| |-- convert_gif.sh
| |-- data_utils.py
| |-- model_settings.py
| |-- model_utils.py
| `-- readme.md
|-- Work_dirs
| |-- ASR
| | `-- readme.md
| `-- TTS
| `-- readme.md
|-- __init__.py
|-- app.py
|-- env.yaml
|-- pages
| |-- 1_🍬💖_甜言模式.py
| |-- 2_💥😤_怼语模式.py
| `-- 3_🚀💫_待开发ing.py
|-- project_structure.txt
`-- requirements.txt
44 directories, 79 files