Upload folder using huggingface_hub
Browse files
README.md
CHANGED
@@ -35,6 +35,7 @@ pipeline_tag: automatic-speech-recognition
|
|
35 |
- π **Phone Call Optimized**: Specifically trained on short conversational segments typical of phone calls
|
36 |
- π **Turbo Performance**: Inherits the speed advantages of whisper-large-v3-turbo
|
37 |
- πΌ **Enterprise Ready**: Developed by [Olib AI](https://www.olib.ai) for business applications
|
|
|
38 |
|
39 |
## π Training Details
|
40 |
|
@@ -62,6 +63,8 @@ model = AutoModelForSpeechSeq2Seq.from_pretrained(
|
|
62 |
)
|
63 |
model.to(device)
|
64 |
|
|
|
|
|
65 |
processor = AutoProcessor.from_pretrained(model_id)
|
66 |
|
67 |
pipe = pipeline(
|
|
|
35 |
- π **Phone Call Optimized**: Specifically trained on short conversational segments typical of phone calls
|
36 |
- π **Turbo Performance**: Inherits the speed advantages of whisper-large-v3-turbo
|
37 |
- πΌ **Enterprise Ready**: Developed by [Olib AI](https://www.olib.ai) for business applications
|
38 |
+
- π§ **FP32 Precision**: Full precision model for maximum accuracy
|
39 |
|
40 |
## π Training Details
|
41 |
|
|
|
63 |
)
|
64 |
model.to(device)
|
65 |
|
66 |
+
# Note: This model is in FP32 format
|
67 |
+
|
68 |
processor = AutoProcessor.from_pretrained(model_id)
|
69 |
|
70 |
pipe = pipeline(
|