Skip to content

Commit

Permalink
Merge pull request #10 from Mic92/master
Browse files Browse the repository at this point in the history
tutorial: replace tree with find
  • Loading branch information
synesthesiam authored Apr 21, 2023
2 parents f11b15f + dfdf33a commit ba2ffe8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,12 @@ config/programs/asr/faster-whisper/script/download.py tiny-int8
Notice that the model was downloaded to `config/data/asr/faster-whisper`:

```sh
tree config/data/asr/faster-whisper/
find config/data/asr/faster-whisper/
config/data/asr/faster-whisper/
└── tiny-int8
├── config.json
├── model.bin
└── vocabulary.txt
config/data/asr/faster-whisper/tiny-int8
config/data/asr/faster-whisper/tiny-int8/vocabulary.txt
config/data/asr/faster-whisper/tiny-int8/model.bin
config/data/asr/faster-whisper/tiny-int8/config.json
```

The `tiny-int8` model is the smallest and fastest model, but may not give the best transcriptions. Run `download.py` without any arguments to see the available models, or follow [the instructions](https://github.com/guillaumekln/faster-whisper/#model-conversion) to make your own!
Expand Down

0 comments on commit ba2ffe8

Please sign in to comment.