init
This commit is contained in:
22
RUN_DUTCH_LLM.sh
Executable file
22
RUN_DUTCH_LLM.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
# Dutch transcription with GPU, sentence extraction, and LLM analysis
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
export LD_LIBRARY_PATH=".venv/lib/python3.13/site-packages/nvidia/cudnn/lib:.venv/lib/python3.13/site-packages/nvidia/cublas/lib:${LD_LIBRARY_PATH}"
|
||||
|
||||
echo "Starting Dutch transcription with LLM analysis..."
|
||||
echo "Using model: llama3.2:latest"
|
||||
echo "Speak in Dutch into your microphone"
|
||||
echo "Press Ctrl+C to stop"
|
||||
echo ""
|
||||
|
||||
.venv/bin/python3 transcribe_speakers.py \
|
||||
--sentence-mode \
|
||||
--language nl \
|
||||
--model large \
|
||||
--interval 5 \
|
||||
--min-duration 2 \
|
||||
--enable-llm \
|
||||
--llm-model "llama3.2:latest" \
|
||||
"$@"
|
||||
Reference in New Issue
Block a user