shiyemin2 commited on
Commit
b38353b
·
1 Parent(s): 7ee94d1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -19
README.md CHANGED
@@ -1,57 +1,58 @@
1
  ---
 
2
  license: openrail
3
 
4
  datasets:
5
- - LinkSoul/LLaSA-Audio-Instructions
6
  language:
7
  - zh
8
  - en
9
  ---
10
 
11
 
12
- # LLaSA: Large Language and Speech Assistant
 
13
 
14
- 开源,可商用的**中英文双语语音-语言助手 LLaSA 以及中英文语音 SFT 数据集 LLaSA-Audio-Instructions**,第一个支持中英文语音-文本多模态对话的开源可商用对话模型。
15
 
16
  <!--
17
  <div align="center">
18
- <img src="https://huggingface.co/LinkSoul/LLaSA-Cllama2/blob/main/meta/preview.jpg" width="40%">
19
  </div>
20
 
21
  -->
22
- ![LLaSA](meta/llasa_preview.jpg)
23
 
24
  ## 基础演示
25
 
26
- ![
27
- Base Demo](meta/demo.gif)
28
 
29
  ## 在线试玩
30
 
31
  > Talk is cheap, Show you the Demo.
32
- - [Demo 地址 / HuggingFace Spaces](https://huggingface.co/spaces/LinkSoul/LLaSA)
33
 
34
  ## 资源下载
35
 
36
  - 模型:
37
- - [LLaSA-Chinese-Llama-2-7B](https://huggingface.co/LinkSoul/LLaSA-Cllama2)
38
- - [LLaSA-Baichuan-7B](https://huggingface.co/LinkSoul/LLaSA-Baichuan)
39
 
40
  - 语言模型:
41
  - [Chinese-Llama-2-7b](https://github.com/LinkSoul-AI/Chinese-Llama-2-7b)
42
  - [Baichuan-7B](https://huggingface.co/baichuan-inc/Baichuan-7B)
43
 
44
- - 数据集:[LLaSA-Audio-Instructions](https://huggingface.co/datasets/LinkSoul/LLaSA-Audio-Instructions)
45
 
46
  ## 环境安装
47
  ```shell
48
  # clone the repository
49
- git clone https://github.com/LinkSoul-AI/LLaSA
50
- cd LLaSA
51
 
52
  # install package
53
- conda create -n llasa python=3.10 -y
54
- conda activate llasa
55
  pip install --upgrade pip
56
  pip install -e .
57
  ```
@@ -59,11 +60,11 @@ pip install -e .
59
  ## 快速测试
60
 
61
  ```shell
62
- export LLASA_DEVICE="cuda:0"
63
  python infer.py \
64
  --input_audio_file PATH/TO/YOUR/AUDIO \
65
- --llasa_model PATH/TO/LLaSA/MODEL \
66
- --llasa_audio_tower PATH/TO/WHISPER/MODEL \
67
  --llm_type "Chinese_llama2" or "baichuan" \
68
  ```
69
 
@@ -80,7 +81,7 @@ python infer.py \
80
 
81
  ## 项目协议
82
 
83
- [Apache-2.0 license](https://github.com/LinkSoul-AI/LLaSA/blob/main/LICENSE)
84
 
85
  ## 微信交流群
86
  <!--
 
1
  ---
2
+
3
  license: openrail
4
 
5
  datasets:
6
+ - LinkSoul/LLaSM-Audio-Instructions
7
  language:
8
  - zh
9
  - en
10
  ---
11
 
12
 
13
+ # LLaSM: Large Language and Speech Model
14
+
15
 
16
+ 开源,可商用的**中英文双语语音-语言助手 LLaSM 以及中英文语音 SFT 数据集 LLaSM-Audio-Instructions**,第一个支持中英文语音-文本多模态对话的开源可商用对话模型。
17
 
18
  <!--
19
  <div align="center">
20
+ <img src="https://huggingface.co/LinkSoul/LLaSM-Baichuan/blob/main/meta/preview.jpg" width="40%">
21
  </div>
22
 
23
  -->
24
+ ![LLaSM](meta/llasm_preview.jpg)
25
 
26
  ## 基础演示
27
 
28
+ ![Base Demo](meta/demo.gif)
 
29
 
30
  ## 在线试玩
31
 
32
  > Talk is cheap, Show you the Demo.
33
+ - [Demo 地址 / HuggingFace Spaces](https://huggingface.co/spaces/LinkSoul/LLaSM)
34
 
35
  ## 资源下载
36
 
37
  - 模型:
38
+ - [LLaSM-Chinese-Llama-2-7B](https://huggingface.co/LinkSoul/LLaSM-Cllama2)
39
+ - [LLaSM-Baichuan-7B](https://huggingface.co/LinkSoul/LLaSM-Baichuan)
40
 
41
  - 语言模型:
42
  - [Chinese-Llama-2-7b](https://github.com/LinkSoul-AI/Chinese-Llama-2-7b)
43
  - [Baichuan-7B](https://huggingface.co/baichuan-inc/Baichuan-7B)
44
 
45
+ - 数据集:[LLaSM-Audio-Instructions](https://huggingface.co/datasets/LinkSoul/LLaSM-Audio-Instructions)
46
 
47
  ## 环境安装
48
  ```shell
49
  # clone the repository
50
+ git clone https://github.com/LinkSoul-AI/LLaSM
51
+ cd LLaSM
52
 
53
  # install package
54
+ conda create -n llasm python=3.10 -y
55
+ conda activate llasm
56
  pip install --upgrade pip
57
  pip install -e .
58
  ```
 
60
  ## 快速测试
61
 
62
  ```shell
63
+ export LLASM_DEVICE="cuda:0"
64
  python infer.py \
65
  --input_audio_file PATH/TO/YOUR/AUDIO \
66
+ --llasm_model PATH/TO/LLaSM/MODEL \
67
+ --llasm_audio_tower PATH/TO/WHISPER/MODEL \
68
  --llm_type "Chinese_llama2" or "baichuan" \
69
  ```
70
 
 
81
 
82
  ## 项目协议
83
 
84
+ [Apache-2.0 license](https://github.com/LinkSoul-AI/LLaSM/blob/main/LICENSE)
85
 
86
  ## 微信交流群
87
  <!--