JoelAjitesh commited on
Commit
a1ed632
·
verified ·
1 Parent(s): 65d3908

Add organization card

Browse files
Files changed (1) hide show
  1. README.md +26 -32
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 compact, production-oriented text-to-speech voices for conversational AI, with a
10
- focus on Indian-English for customer-support and website voice assistants.
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
- ## The Roxi TTS line
18
 
19
- A family of Indian-English voices fine-tuned from the open MOSS-TTS models. Two tiers: the
20
- 0.1B models run in real time for live agents, and the 1.7B model is for pre-rendered or
21
- premium-quality audio.
 
 
 
22
 
23
- | Model | Base | Best for |
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
- ## Focus
33
 
34
- - Indian-English accent, natural and telephony-aware
35
- - Small and fast, built on commercially permissive Apache-2.0 base models
36
- - Single-speaker branded voices for support calls and website assistants
 
 
37
 
38
- ## Attribution
 
 
39
 
40
- Models are built on MOSS-TTS (Apache-2.0). Training data includes the IIT-Madras Indic TTS
41
- English set, used with the required copyright notice shown on each model card.
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```