Spaces:
Running
Running
Add organization card
Browse files
README.md
CHANGED
|
@@ -1,41 +1,35 @@
|
|
| 1 |
-
---
|
| 2 |
-
title: IOTEverythin
|
| 3 |
-
sdk: static
|
| 4 |
-
pinned: false
|
| 5 |
-
---
|
| 6 |
-
|
| 7 |
# IOTEverythin
|
| 8 |
|
| 9 |
-
We build
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
## VozVox
|
| 13 |
-
|
| 14 |
-
These voices power [VozVox](https://www.vozvox.com/), our voice agent platform for
|
| 15 |
-
AI-powered conversational agents across phone and web, with natural-sounding speech.
|
| 16 |
|
| 17 |
-
##
|
| 18 |
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|---|---|---|
|
| 25 |
-
| roxi-tts-pro | MOSS-TTS-Local 1.7B | Highest quality and intelligibility, offline or premium |
|
| 26 |
-
| roxi-tts-v3.1 | MOSS-TTS-Nano 0.1B | Real-time, current best small voice |
|
| 27 |
-
| roxi-tts-v3 | MOSS-TTS-Nano 0.1B | Earlier single-speaker voice |
|
| 28 |
-
| roxi-tts-v2 | MOSS-TTS-Nano 0.1B | First Roxi release |
|
| 29 |
-
| roxi-tts-v2-onnx | ONNX build of v2 | CPU inference, no transformers dependency |
|
| 30 |
-
| voxi-tts | MOSS-TTS-Nano 0.1B | Original prototype voice |
|
| 31 |
|
| 32 |
-
##
|
| 33 |
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
|
|
|
|
|
|
| 37 |
|
| 38 |
-
|
|
|
|
|
|
|
| 39 |
|
| 40 |
-
|
| 41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# IOTEverythin
|
| 2 |
|
| 3 |
+
We build **small, trustworthy AI that runs where the data lives** — on your
|
| 4 |
+
own hardware, over your own documents, with no cloud in the loop.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
+
## What we care about
|
| 7 |
|
| 8 |
+
- **Grounded over fluent.** Models should prove their answers, not perform
|
| 9 |
+
them. Every answer with a receipt; every unknown admitted.
|
| 10 |
+
- **Local-first.** Consumer GPUs and edge devices are enough for
|
| 11 |
+
verification-grade AI — your documents never leave your machine.
|
| 12 |
+
- **Honest evaluation.** Held-out calibration, published negative results,
|
| 13 |
+
and limitations sections that pull no punches.
|
| 14 |
|
| 15 |
+
## Featured work
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
+
### 🔒 [grounded-pointer-qa](https://huggingface.co/IOTEverythin/grounded-pointer-qa)
|
| 18 |
|
| 19 |
+
A question-answering model that **cannot hallucinate by construction**: its
|
| 20 |
+
output layer can only quote verbatim spans from *your* documents, a trained
|
| 21 |
+
abstention head refuses when the answer isn't there, and decoding is fully
|
| 22 |
+
deterministic. Knowledge is hot-swappable — point it at a folder of
|
| 23 |
+
`.txt`/`.md`/`.pdf` files and it answers from those, no retraining.
|
| 24 |
|
| 25 |
+
- 74.6 EM on SQuAD v2 (held-out, full-retrieval setting)
|
| 26 |
+
- **91.7% answer precision** in "right or silent" mode
|
| 27 |
+
- 125M params — milliseconds per answer on a consumer GPU
|
| 28 |
|
| 29 |
+
```python
|
| 30 |
+
from modeling_proqa import GroundedQA
|
| 31 |
+
qa = GroundedQA("proqa.pt")
|
| 32 |
+
qa.load_folder("my/documents")
|
| 33 |
+
qa.ask("when does the contract expire?")
|
| 34 |
+
# {'answer': '30 November 2026', 'confidence': 0.98, 'source': '...'}
|
| 35 |
+
```
|