init
This commit is contained in:
26
README.md
26
README.md
@@ -90,22 +90,30 @@ ollama pull llama3.2
|
||||
### Common Commands
|
||||
|
||||
```bash
|
||||
# Specify device and model
|
||||
python transcribe_speakers.py --device "CABLE Output" --model medium
|
||||
# Quick start with GPU (English)
|
||||
./RUN_GPU.sh
|
||||
|
||||
# Save to file with language
|
||||
python transcribe_speakers.py --language es --output transcript.txt
|
||||
# Dutch language
|
||||
./RUN_DUTCH.sh
|
||||
|
||||
# Fast mode (low latency)
|
||||
python transcribe_speakers.py --fast-mode --model tiny --interval 3
|
||||
# Dutch with LLM analysis
|
||||
./RUN_DUTCH_LLM.sh
|
||||
|
||||
# Extract complete sentences from chunks
|
||||
python transcribe_speakers.py --sentence-mode --output sentences.txt
|
||||
# With LLM analysis
|
||||
./RUN_GPU.sh --enable-llm
|
||||
|
||||
# Save to file
|
||||
./RUN_GPU.sh --output transcript.txt
|
||||
|
||||
# Other languages (Spanish, French, German, etc.)
|
||||
./RUN_GPU.sh --language es # Spanish
|
||||
./RUN_GPU.sh --language fr # French
|
||||
./RUN_GPU.sh --language de # German
|
||||
|
||||
# Maximum accuracy with LLM and sentence extraction
|
||||
python transcribe_speakers.py --model large --enable-llm --sentence-mode --output enriched.txt
|
||||
|
||||
# Force CPU (avoid GPU issues)
|
||||
# Force CPU (if GPU issues)
|
||||
python transcribe_speakers.py --force-cpu
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user