CoolFace
Modelpublic

thucdangvan020999/polyglot-lion-1.7b-4bit

sourceHugging Facemitupdated 5mo agoView on Hugging Face
0likes8downloads
Model Card

thucdangvan020999/polyglot-lion-1.7b-4bit

This model was converted to MLX format from `knoveleng/polyglot-lion-1.7b` using mlx-audio version 0.4.3.

Refer to the original model card for more details on the model.

Use with mlx-audio

bash
pip install -U mlx-audio

CLI Example:

bash
python -m mlx_audio.stt.generate --model thucdangvan020999/polyglot-lion-1.7b-4bit --audio "audio.wav"

Python Example:

python
from mlx_audio.stt.utils import load_model
from mlx_audio.stt.generate import generate_transcription

model = load_model("thucdangvan020999/polyglot-lion-1.7b-4bit")
transcription = generate_transcription(
    model=model,
    audio_path="path_to_audio.wav",
    output_path="path_to_output.txt",
    format="txt",
    verbose=True,
)
print(transcription.text)