mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
docs
This commit is contained in:
parent
3dcfb685a2
commit
02d1207ff4
5
docs/application
Normal file
5
docs/application
Normal file
@ -0,0 +1,5 @@
|
||||
## Audio Cut
|
||||
|
||||
## Realtime Speech Recognition
|
||||
|
||||
## Audio Chat
|
||||
58
docs/docker.md
Normal file
58
docs/docker.md
Normal 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>
|
||||
```
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user