File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 1+ LICENSE
2+ .github
Original file line number Diff line number Diff line change 1+ # pull official base image
2+ FROM python:3.8.6
3+
4+ RUN apt-get install libsndfile1
5+
6+ RUN pip install --no-cache datasets transformers soundfile numpy torch torchaudio
7+
8+ COPY . .
9+
10+ RUN pip install -e .
Original file line number Diff line number Diff line change @@ -54,3 +54,11 @@ You can read about models from the list:
5454- [ * airesearch/wav2vec2-large-xlsr-53-th* - AI RESEARCH - PyThaiNLP model] ( https://medium.com/airesearch-in-th/airesearch-in-th-3c1019a99cd )
5555- [ * annaphong/wav2vec2-large-xlsr-53-th-cv8-newmm* - Thai Wav2Vec2 with CommonVoice V8 (newmm tokenizer) + language model] ( https://huggingface.co/wannaphong/wav2vec2-large-xlsr-53-th-cv8-newmm )
5656- [ * wannaphong/wav2vec2-large-xlsr-53-th-cv8-deepcut* - Thai Wav2Vec2 with CommonVoice V8 (deepcut tokenizer) + language model] ( https://huggingface.co/wannaphong/wav2vec2-large-xlsr-53-th-cv8-deepcut )
57+
58+ ### Docker
59+ To use this inside of Docker do the following:
60+ ``` sh
61+ docker build -t < Your Tag name> .
62+ docker run docker run --entrypoint /bin/bash -it < Your Tag name>
63+ ```
64+ You will then get access to a interactive shell environment where you can use python with all packages installed.
You can’t perform that action at this time.
0 commit comments