https://github.com/saladtechnologies/wav2vec2-large
An inference server for jonatasgrosman/wav2vec2-large-xlsr-53-english
https://github.com/saladtechnologies/wav2vec2-large
Last synced: 25 days ago
JSON representation
An inference server for jonatasgrosman/wav2vec2-large-xlsr-53-english
- Host: GitHub
- URL: https://github.com/saladtechnologies/wav2vec2-large
- Owner: SaladTechnologies
- License: mit
- Created: 2023-10-10T14:29:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-10T16:57:40.000Z (almost 2 years ago)
- Last Synced: 2025-02-16T16:59:00.560Z (8 months ago)
- Language: Python
- Size: 58.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wave2vec2-large
An inference server for jonatasgrosman/wav2vec2-large-xlsr-53-english## Build
```bash
docker buildx build -t saladtechnologies/wav2vec2-large:latest \
--provenance=false \
--output type=docker \
.
```## Run
```bash
docker run \
-p 1111:1111 \
--gpus all \
docker.io/saladtechnologies/wav2vec2-large:latest
```## Test
```bash
curl -X POST \
'http://localhost:1111/transcribe' \
--header 'Content-Type: application/octet-stream' \
--data-binary '@/home/shawn/code/SaladTechnologies/wav2vec2-large/Recording.mp3'
``````json
{"text":"wavetevec to infancs server is working as intended","inference_time":0.18015432398533449}
```