This commit is contained in:
游雁 2023-04-20 17:46:19 +08:00
parent 3dcfb685a2
commit 02d1207ff4
3 changed files with 69 additions and 0 deletions

5
docs/application Normal file
View File

@ -0,0 +1,5 @@
## Audio Cut
## Realtime Speech Recognition
## Audio Chat

58
docs/docker.md Normal file
View File

@ -0,0 +1,58 @@
# Docker
## Install
### Ubuntu
```shell
curl -fsSL https://test.docker.com -o test-docker.sh
sudo sh test-docker.sh
```
### Debian
```shell
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
```
### CentOS
```shell
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
```
### Windows
Ref to [docs](https://docs.docker.com/desktop/install/windows-install/)
## Start Docker
```shell
sudo systemctl start docker
```
## Download image
### Image
#### CPU
`registry.cn-hangzhou.aliyuncs.com/modelscope-repo/modelscope:ubuntu20.04-py37-torch1.11.0-tf1.15.5-1.5.0`
#### GPU
`registry.cn-hangzhou.aliyuncs.com/modelscope-repo/modelscope:ubuntu20.04-cuda11.3.0-py37-torch1.11.0-tf1.15.5-1.5.0'
### Pull Image
```shell
sudo docker pull <image-name>:<tag>
```
### Check Downloaded Image
```shell
sudo docker images
```
### Run Docker
```shell
sudo docker run -it <image-name>:<tag> bash
```
### Stop Docker
```shell
sudo docker ps
sudo docker stop <container-id>
```

View File

@ -75,6 +75,12 @@ FunASR hopes to build a bridge between academic research and industrial applicat
./papers.md
.. toctree::
:maxdepth: 1
:caption: Application
./application.md
.. toctree::
:maxdepth: 1
:caption: FQA