Instructions to use CohereLabs/cohere-transcribe-03-2026 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CohereLabs/cohere-transcribe-03-2026 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="CohereLabs/cohere-transcribe-03-2026", trust_remote_code=True)# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("CohereLabs/cohere-transcribe-03-2026", trust_remote_code=True) model = AutoModelForSpeechSeq2Seq.from_pretrained("CohereLabs/cohere-transcribe-03-2026", trust_remote_code=True, device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Greek letter "ς" is missing.
Dear owners, this model is quiet good and fast.
Congratulation for supporting Greek!
During the transcription although it is 100% correct the model never provide letter "ς".
e.g.
"Ο επιστημονικό λόγο χρησιμοποιείται για να τεκμηριώσει, να ερμηνεύσει, να αποδείξει και συχνά να εκλαϊκεύσει τα ευρήματα και τι ανακαλύψει των επιστημόνων. Είναι, επομένω, κατανοητό πω υπηρετώντα αποκλειστικά την αλήθεια είναι απαλλαγμένο από συναισθηματικέ εξάρσει, προσωπικέ αναφορέ και υποκειμενικά σχόλια."
instead
«Ο επιστημονικός λόγος χρησιμοποιείται για να τεκμηριώσει, να ερμηνεύσει, να αποδείξει και συχνά να εκλαϊκεύσει τα ευρήματα και τις ανακαλύψεις των επιστημόνων. Είναι, επομένως, κατανοητό πως υπηρετώντας αποκλειστικά την αλήθεια είναι απαλλαγμένος από συναισθηματικές εξάρσεις, προσωπικές αναφορές και υποκειμενικά σχόλια.»
this is known issue?