rebrand: sovereign README — OsirisWhisper-STT v1.0
Browse files
README.md
CHANGED
|
@@ -5,53 +5,61 @@ language:
|
|
| 5 |
- es
|
| 6 |
- fr
|
| 7 |
- de
|
| 8 |
-
- it
|
| 9 |
-
- pt
|
| 10 |
- ja
|
| 11 |
- ko
|
| 12 |
- zh
|
| 13 |
- ar
|
| 14 |
- hi
|
| 15 |
-
-
|
|
|
|
| 16 |
tags:
|
| 17 |
- speech-recognition
|
| 18 |
- stt
|
| 19 |
- asr
|
| 20 |
-
- qwen3
|
| 21 |
- osirisbrain
|
| 22 |
-
-
|
| 23 |
-
- streaming
|
| 24 |
-
base_model: Qwen/Qwen3-ASR-0.6B
|
| 25 |
pipeline_tag: automatic-speech-recognition
|
| 26 |
---
|
| 27 |
|
| 28 |
-
# OsirisWhisper
|
| 29 |
|
| 30 |
-
**Sovereign Speech-to-Text for OsirisBrain AGI**
|
| 31 |
|
| 32 |
-
|
| 33 |
|
| 34 |
-
##
|
| 35 |
|
| 36 |
| Property | Value |
|
| 37 |
|----------|-------|
|
| 38 |
| Parameters | 600M |
|
|
|
|
| 39 |
| Languages | 52 (auto-detected) |
|
| 40 |
-
| Latency | ~100-200ms
|
| 41 |
-
| Base Model | Qwen/Qwen3-ASR-0.6B |
|
| 42 |
| License | Apache 2.0 |
|
| 43 |
-
|
|
| 44 |
|
| 45 |
## Usage
|
| 46 |
|
|
|
|
|
|
|
| 47 |
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
-
## Integration
|
| 50 |
|
| 51 |
-
Part of the
|
| 52 |
-
- TTS:
|
| 53 |
-
- STT:
|
|
|
|
|
|
|
| 54 |
|
| 55 |
-
##
|
| 56 |
|
| 57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
- es
|
| 6 |
- fr
|
| 7 |
- de
|
|
|
|
|
|
|
| 8 |
- ja
|
| 9 |
- ko
|
| 10 |
- zh
|
| 11 |
- ar
|
| 12 |
- hi
|
| 13 |
+
- pt
|
| 14 |
+
base_model: []
|
| 15 |
tags:
|
| 16 |
- speech-recognition
|
| 17 |
- stt
|
| 18 |
- asr
|
|
|
|
| 19 |
- osirisbrain
|
| 20 |
+
- sovereign-ai
|
|
|
|
|
|
|
| 21 |
pipeline_tag: automatic-speech-recognition
|
| 22 |
---
|
| 23 |
|
| 24 |
+
# OsirisWhisper-STT v1.0
|
| 25 |
|
| 26 |
+
**Sovereign Speech-to-Text engine for OsirisBrain AGI.**
|
| 27 |
|
| 28 |
+
600M parameter ASR model supporting 52 languages with automatic language detection.
|
| 29 |
|
| 30 |
+
## Specifications
|
| 31 |
|
| 32 |
| Property | Value |
|
| 33 |
|----------|-------|
|
| 34 |
| Parameters | 600M |
|
| 35 |
+
| Architecture | Encoder-Decoder (Speech-to-Text) |
|
| 36 |
| Languages | 52 (auto-detected) |
|
| 37 |
+
| Latency | ~100-200ms per utterance |
|
|
|
|
| 38 |
| License | Apache 2.0 |
|
| 39 |
+
| Organization | [OsirisBrain](https://huggingface.co/osirisbrain) |
|
| 40 |
|
| 41 |
## Usage
|
| 42 |
|
| 43 |
+
```python
|
| 44 |
+
from transformers import AutoModelForSpeechSeq2Seq, AutoProcessor
|
| 45 |
|
| 46 |
+
processor = AutoProcessor.from_pretrained("osirisbrain/osiriswhisper-stt", trust_remote_code=True)
|
| 47 |
+
model = AutoModelForSpeechSeq2Seq.from_pretrained("osirisbrain/osiriswhisper-stt", trust_remote_code=True)
|
| 48 |
+
```
|
| 49 |
|
| 50 |
+
## OsirisBrain Integration
|
| 51 |
|
| 52 |
+
Part of the OsirisBrain Sovereign AI ecosystem:
|
| 53 |
+
- **OsirisSound TTS**: Text-to-Speech (Meritaten v3.0)
|
| 54 |
+
- **OsirisWhisper STT**: Speech-to-Text (this model)
|
| 55 |
+
- **OsirisCortex v6**: 9B Reasoning + Vision
|
| 56 |
+
- **OsirisPtah-Coder v5**: 7B Coding
|
| 57 |
|
| 58 |
+
## API Endpoint
|
| 59 |
|
| 60 |
+
When running OsirisSound server:
|
| 61 |
+
```
|
| 62 |
+
POST http://127.0.0.1:47891/transcribe
|
| 63 |
+
Content-Type: multipart/form-data
|
| 64 |
+
Body: audio file (wav, mp3, ogg, etc.)
|
| 65 |
+
```
|