JoelAjitesh commited on
Commit
cf7594a
·
verified ·
1 Parent(s): 274190e

Separate Voice/TTS and Grounded QA into distinct sections

Browse files
Files changed (1) hide show
  1. README.md +31 -17
README.md CHANGED
@@ -6,7 +6,18 @@ pinned: false
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
@@ -29,25 +40,28 @@ premium-quality audio.
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
- ## Grounded QA
 
 
 
 
 
 
 
 
 
 
33
 
34
  [grounded-pointer-qa](https://huggingface.co/IOTEverythin/grounded-pointer-qa) is an
35
- extractive question-answering model that cannot hallucinate by construction: it only
36
  quotes verbatim spans from your documents, abstains when the answer isn't there, and
37
  decodes deterministically. Knowledge is hot-swappable — point it at a folder of
38
- `.txt`/`.md`/`.pdf` files, no retraining. Built on roberta-base (125M), it runs in
39
- milliseconds on consumer hardware: 74.6 EM on SQuAD v2 in a full-retrieval setting, and
40
- 91.7% answer precision in its "right or silent" mode. A natural grounding layer for
41
- support agents that must quote policy documents instead of improvising.
42
-
43
- ## Focus
44
-
45
- - Indian-English accent, natural and telephony-aware
46
- - Small and fast, built on commercially permissive Apache-2.0 base models
47
- - Grounded, verifiable answers for agents that quote documents rather than improvise
48
- - Single-speaker branded voices for support calls and website assistants
49
 
50
- ## Attribution
 
 
 
51
 
52
- Models are built on MOSS-TTS (Apache-2.0). Training data includes the IIT-Madras Indic TTS
53
- English set, used with the required copyright notice shown on each model card.
 
6
 
7
  # IOTEverythin
8
 
9
+ We build small, production-oriented AI that runs where the data lives. Two
10
+ independent product lines:
11
+
12
+ - **Voice** — compact Indian-English text-to-speech for conversational agents.
13
+ - **Grounded QA** — extractive question answering that quotes your documents
14
+ instead of hallucinating.
15
+
16
+ ---
17
+
18
+ # 🎙️ Voice / Text-to-Speech
19
+
20
+ Compact, production-oriented text-to-speech voices for conversational AI, with a
21
  focus on Indian-English for customer-support and website voice assistants.
22
 
23
  ## VozVox
 
40
  | roxi-tts-v2-onnx | ONNX build of v2 | CPU inference, no transformers dependency |
41
  | voxi-tts | MOSS-TTS-Nano 0.1B | Original prototype voice |
42
 
43
+ **Focus:** Indian-English accent, natural and telephony-aware; small and fast;
44
+ built on commercially permissive Apache-2.0 base models; single-speaker branded
45
+ voices for support calls and website assistants.
46
+
47
+ **Attribution:** Models are built on MOSS-TTS (Apache-2.0). Training data includes
48
+ the IIT-Madras Indic TTS English set, used with the required copyright notice shown
49
+ on each model card.
50
+
51
+ ---
52
+
53
+ # 🔒 Grounded QA
54
 
55
  [grounded-pointer-qa](https://huggingface.co/IOTEverythin/grounded-pointer-qa) is an
56
+ extractive question-answering model that **cannot hallucinate by construction**: it only
57
  quotes verbatim spans from your documents, abstains when the answer isn't there, and
58
  decodes deterministically. Knowledge is hot-swappable — point it at a folder of
59
+ `.txt`/`.md`/`.pdf` files, no retraining.
 
 
 
 
 
 
 
 
 
 
60
 
61
+ Built on roberta-base (125M), it runs in milliseconds on consumer hardware: 74.6 EM on
62
+ SQuAD v2 in a full-retrieval setting, and 91.7% answer precision in its "right or silent"
63
+ mode. A natural grounding layer for support agents that must quote policy documents
64
+ instead of improvising.
65
 
66
+ **Focus:** grounded, verifiable answers; every answer a verbatim quote with a source, or
67
+ an honest abstention; local-first and deterministic.