AI Engineer World's Fair 2026
From Scratch to SOTA: Training a 3B State-Space Vision Model — Krishna Prasad Srinivasan, Sarvam
Read the talk
From Scratch to SOTA: Training a 3B State-Space Vision Model
Sarvam’s document model combines block-level OCR, a state-space language backbone, and four stages of training. The engineering challenge is to turn scarce, complex Indian-language documents into faithful, useful machine-readable knowledge at an affordable inference cost.
From a talk by Krishna Prasad Srinivasan
At a glance
Ideas worth remembering
Block-level OCR separates recognition from layout and reading order, letting a small model work inside a document harness.
An SSM carries a fixed-size state through the sequence, reducing long-sequence costs while accepting some loss of recall.
The training curriculum builds language competence first, then vision, OCR specialization, and improvement through verifiable rewards.
Language priors can resolve ambiguous images, but faithful extraction must preserve mistakes present in the source document.
Deployment depends on useful extraction and control over document data; deployment feedback can then inform future training.
The knowledge exists; the machine-readable text does not
A document model cannot learn from knowledge that never became machine-readable. Krishna Prasad Srinivasan of Sarvam opens with that problem: Indian-language material exists, but much of it has never been digitized. He cites a language-distribution study placing Indian-language representation well below 1% of Common Crawl, despite India’s importance as a market for frontier models. Digitization is therefore both an immediate application and a way to create material for future training.
The proposed tool is Sarvam Vision, a three-billion-parameter vision-language model for English and 22 official Indian languages, small enough to run on a single GPU. Srinivasan reports that it beats models 100 times larger on document AI. That comparison is a reported task-specific result; it does not establish superiority across general vision or language tasks.
The difficulty has three parts:
- Coherent extraction: A pile of recognized text is insufficient if its logical relationships disappear. The goal is knowledge extraction, which requires preserving how document components belong together.
- Script representation: The visible shapes in Indian scripts can correspond to complex combinations of Unicode elements. Recognizing a shape and producing the correct text representation require language competence as well as vision.
- Scarce training data: Most of the supported Indian languages are low resource, making the labeled examples needed to teach that mapping hard to obtain.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Separate page organization from block recognition
When development began in late 2025, the team saw most OCR vision-language models handling entire pages as monolithic inputs. Sarvam chose block-level OCR instead. A document harness supplies two distinct functions—layout and reading order—around the small recognition model. This divides the work: the surrounding system handles page organization, while the VLM recognizes individual blocks. Srinivasan describes subsequent 2026 releases as converging on this harness-plus-small-model approach.
The language backbone makes a second departure: it uses a state-space model, or SSM. In the comparison presented here, transformer attention lets every token look at every other token, creating (L \times L) interactions for a sequence of length (L). An SSM instead carries a state through the sequence and updates it token by token. Its sequence-processing compute grows linearly, and the carried state stays constant in size as the sequence grows. Constant state memory should not be read as a claim that every part of training or inference consumes constant memory.
Why does the difference matter for OCR? A page can produce 5,000–10,000 visual tokens. All-pairs interactions become expensive at that length. The following comparison shows where earlier information lives: attention exposes interactions among tokens; the SSM carries information forward through an updated state. That compression can produce what Srinivasan calls “lossy recall.” Block-level recognition makes the tradeoff more acceptable for this application, in exchange for avoiding the high inference cost of long transformer sequences.
Participates in attention with other tokens.
The SSM reduces sequence-length costs by carrying a fixed-size state, accepting some loss of recall. The nodes illustrate the mechanisms rather than a particular model implementation.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Learn language before seeing a pixel
The four-stage curriculum begins with text, rather than document images. Sarvam reports pretraining the three-billion-parameter language backbone on 13 trillion tokens spanning English, Indian languages, math, and code. The purpose is a strong language prior: when the image leaves a word ambiguous, the model already knows which words fit the surrounding text.
Consider the talk’s half-blurred word example. Some of the word’s visible shape survives, but the image alone does not make the reading clear. Knowledge of the language constrains what could belong at that position, allowing the surviving visual evidence and surrounding text to resolve the ambiguity. The intended observable change is an ambiguous image becoming a readable word. It is an explanation of the training rationale, rather than a demonstrated before-and-after result.
The remaining stages add capabilities in order:
- Continual pretraining: 300 million image-text pairs teach the language model to interpret pixels and develop general vision capabilities.
- Supervised fine-tuning: 100 million OCR samples specialize that general VLM for English and all 22 Indian languages. The examples include tables, equations, and handwriting, so specialization extends beyond ordinary printed prose.
- Reinforcement learning: The final stage seeks improvements beyond what supervised fine-tuning achieves, using machine-verifiable OCR rewards.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
The data engine feeds training; tests guide improvement
The curriculum itself is a familiar recipe. Sarvam’s claimed advantage lies underneath it: the data engine and evaluations. For most of the 22 languages, labeled data is not readily available. The team builds synthetic-data pipelines and derives training material from real documents, then uses evaluation performance to improve what goes into training. Evaluations have to measure usefulness to end users as well as leaderboard performance. The talk also points toward agentic vision capabilities in future releases, extending the work beyond the current OCR focus.
OCR is attractive for reinforcement learning because many correctness checks can run automatically. The described loop samples a group of outputs, scores them with unit tests, and reinforces performance relative to the group’s average before repeating. This is reinforcement learning with verifiable rewards, or RLVR. It makes repeated scoring scalable because the checks can run as software.
How does a test become a training signal? The diagram follows the group through scoring and reinforcement. The important relationship is the feedback: generating outputs is only the first step; their measured quality changes what the model is encouraged to produce in the next round.
Generate candidate OCR outputs.
Candidate outputs receive machine-verifiable scores; performance relative to the group average guides reinforcement, then sampling repeats.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
From launch benchmarks to a human-in-the-loop workbench
Srinivasan reports state-of-the-art performance at launch on two global English document benchmarks, while acknowledging that later releases have improved the field’s English results. He separately reports a continuing lead across 22 Indian languages against frontier models. These are Sarvam’s reported comparisons; the promised public Indic benchmark, discussed later, was still forthcoming in the recording.
The model powers an agentic document workbench with human-in-the-loop digitization and extraction. Confidence scores expose uncertainty; block-level grounding connects extraction to document blocks; agentic proofreading supplies another review capability. Those features carry the block-based design into the user workflow, where a recognized result can be inspected before downstream use.
Insurers, banks, governments, and historical-preservation organizations are using Sarvam Vision to digitize more than 35 million pages across English and the 22 Indian languages, Srinivasan reports. That is the scale of the digitization work being undertaken, rather than a stated count of completed pages. Deployment options include an API, on-premises use, and the agentic platform. The presentation closes by describing pricing as highly competitive and general-purpose VLMs with broader vision capabilities as the next planned step.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Synthetic documents help, but extraction must stay faithful
The Q&A first broadens the multilingual claim: Srinivasan says competence across the 22 languages improves English as well, and suggests the effect applies beyond Indian low-resource languages. He keeps a proposed connection to coding outside this project’s scope. The model’s present job is extracting information and knowledge from documents.
Synthetic documents support both supervised fine-tuning and reinforcement learning. For RL, however, Srinivasan recommends complex real-world documents that support useful tests. The reward examples target different failure modes:
- Character error rate: Score the fidelity of recognized characters.
- Table structure: Check whether the output preserves the table’s organization.
- Equations: Test extraction of mathematical document content.
- Language and grammar: Apply checks pertinent to the language being processed.
The practical choice is to construct rewards around the document behavior that needs improvement, then use those rules for iterative training.
The planned public Indic benchmark covers 22 languages and documents from the 1800s through modern times. Its scope includes different layouts and document types: prose, poetry, literature, tables, and finance. Historical range and structural variety matter because useful document intelligence must handle more than contemporary, cleanly typeset text.
A later answer puts a crucial limit on the half-blurred-word example: language knowledge must help recover the document, without rewriting it. If the original contains a mistake, faithful OCR should preserve that mistake. Translation and transliteration therefore are not the extraction objective. Grammar rewards need to be understood alongside this fidelity requirement, rather than as permission to correct source text. Srinivasan also notes that transliteration-derived data is entering OCR training, while leaving its quality and usefulness unresolved.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Control over data makes digitization deployable
The final discussion connects three needs: document capability, training data, and sovereignty. Complex Indian-language paperwork needs a model that can process it. Digitizing that paperwork creates material for downstream training, which Srinivasan connects to a longer-term goal of personalized agents in users’ preferred languages. For governments and other sensitive users, adoption also depends on controlling where document data is sent and when and how it is used. On-premises availability gives that requirement a concrete deployment option.
The closing answers add two practical details. Srinivasan describes the training mix as 40% Indic, with the remainder English, math, code, and other material. Deployments across different states are processing regional-language, English, and mixed-language documents. A feedback pipeline has started, with training on deployment feedback described as an upcoming step. That returns the project to its original problem: making documents readable creates both immediate utility and a route to better training data.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Read the complete timestamped transcript
- 0:16
All right. Um, hi everyone. Good
- 0:18
afternoon. I'm Krishna. Uh, and I'm a
- 0:21
general manager at Servin. Um today I'm
- 0:24
going to tell you how a three billion
- 0:26
parameter model uh small enough to run
- 0:30
on a single GPU gets state-of-the-art uh
- 0:34
in document AI and beats models 100
- 0:38
times larger in size.
- 0:41
It is also a slightly unusual model in
- 0:44
two ways. Firstly u the language model
- 0:46
used is not a standard transformer. Um
- 0:49
and the entire model building from data
- 0:52
to training to compute uh was done end
- 0:55
to end in India and for English and for
- 1:00
22 official Indian languages uh which I
- 1:03
think uh are personally uh uh one of the
- 1:05
hardest document intelligence problems
- 1:07
uh in the world right now. Um this is
- 1:10
how we went from scratch to SOTA.
- 1:14
Who are we? Uh we are serv uh a
- 1:16
sovereign foundation model company uh in
- 1:19
India. We work across different
- 1:21
modalities voice, text and vision. Uh in
- 1:25
voice we have speech to text and
- 1:27
texttospech models. In text we have uh a
- 1:31
30 billion and 100 billion parameter uh
- 1:33
uh models and in vision we have a
- 1:36
document intelligence model which is
- 1:38
what we are going to talk about today.
- 1:41
Um, India is largely missing from the
- 1:44
machine readable world. Um, according to
- 1:47
a published language distribution study,
- 1:50
well under 1% of the common crawl uh
- 1:54
corpus on which frontier models are
- 1:56
trained uh have uh um Indian language
- 2:00
representation.
- 2:01
Now in several forums you may have heard
- 2:03
Frontier Labs say that um India is their
- 2:07
um India is one of their larger uh uh
- 2:09
and fastly growing markets and to that
- 2:13
end um India is still missing uh in
- 2:16
terms of data from frontier models that
- 2:19
uh um are being trained every day here.
- 2:22
Now why is that? Uh primarily not
- 2:25
because there is uh a lack of data or
- 2:28
the knowledge does not exist. It is
- 2:30
because the data has never been
- 2:31
digitized and we are solving that
- 2:34
problem at server.
- 2:37
Um why is Indic document intelligence
- 2:40
hard? Uh firstly the goal is that of
- 2:44
knowledge extraction not just purely
- 2:46
text extraction. Uh extracting pure text
- 2:49
without logical coherence is
- 2:51
meaningless. And secondly in index
- 2:55
scripts the shape of uh the words and
- 2:58
the language you see are very different
- 3:01
from what a machine sees. that is Indian
- 3:04
languages have a complex uh set of uni
- 3:07
codes fused together to get right the
- 3:09
language model needs to be strong at all
- 3:12
22 languages. Third, majority of Indian
- 3:16
languages can be considered low resource
- 3:18
due to which there is a lot of uh um
- 3:22
lack in data today to train these
- 3:24
models.
- 3:26
Our answer to this is server vision
- 3:28
India's first sovereign vision language
- 3:30
model built from scratch. um a three
- 3:34
billion parameter model with state space
- 3:36
architecture
- 3:38
data compute and training all of which
- 3:40
done in India. When we started the
- 3:43
initial work in late 2025 most VLMs uh
- 3:47
in the OCR space were monolith VLMs. uh
- 3:51
they performed page level OCR and we at
- 3:55
the time took a contrarian bet to focus
- 3:57
on block level OCR instead adding a
- 4:00
document hardness around the model. Um a
- 4:03
lot of models since then uh released uh
- 4:06
uh recently in 2026 have converged onto
- 4:09
the same uh hardness plus small model
- 4:12
paradigm for OCR which shows a lot of
- 4:14
value in the direction we uh set off.
- 4:18
Serverom vision in particular uh has two
- 4:20
hardness modules one for layout and one
- 4:22
for reading hardness and a state space
- 4:26
model uh VLM for block level OCR.
- 4:31
Again um today uh why do we use state
- 4:35
space and not a transformer? Um most OCR
- 4:38
models today uh like general VLMs, open
- 4:41
source VLMs like Quen, Gemma etc. are
- 4:44
all transformers based. We took an
- 4:46
alternate approach uh using an SSM. Why?
- 4:51
Both are fundamentally sequenced models
- 4:53
transformers and SSMs but with very
- 4:56
different underlying mechanics. A
- 4:58
transformer has every token look at
- 5:01
every other token where the compute
- 5:03
grows with square of the sequence
- 5:06
length. Uh that is the L cross L
- 5:09
interactions and the memory goes as the
- 5:12
sequence grows as well. Now on the other
- 5:15
hand, SSMs have a single state. They
- 5:18
maintain a single state through the
- 5:20
sequence updating it token by token. Now
- 5:23
as compute grows only linearly, the
- 5:26
memory stays constant for SSMS. Now why
- 5:30
is this the right uh architecture for
- 5:32
OCR? It really depends on the uh uh
- 5:36
trade-offs here uh for long documents in
- 5:38
particular which can lead up to uh uh 5
- 5:41
to 10,000 uh visual tokens per page and
- 5:46
quadratic complexity of you know uh
- 5:48
compute and memory becomes very
- 5:50
expensive for inference. On the other
- 5:52
hand,
- 5:54
um doing block level OCR with somewhat
- 5:57
of a lossy recall using SSMs can be
- 6:00
justifi justified to uh um avoid high
- 6:04
compute costs imposed by transformers.
- 6:08
So how do you actually train this? We
- 6:12
built a staged curriculum four stages
- 6:14
each uh building on the last um stage
- 6:18
one is texton pre-training uh 13
- 6:21
trillion tokens across English, Indian
- 6:23
language, text, math and code. This
- 6:26
builds the three billion parameters
- 6:28
language backbone and a strong language
- 6:32
prior is what lets the model resolve a
- 6:35
smudged or an ambiguous text from the
- 6:38
image. the same way you can read a half
- 6:41
blurred word because you know which word
- 6:43
is supposed to uh u be at the right
- 6:46
place. So we focused on building the
- 6:49
competence of the language model first
- 6:52
uh before the model ever even sees a
- 6:54
pixel. Stage two is where we performed
- 6:58
continual pre-training uh on 300 million
- 7:01
image text pairs. This teaches the
- 7:03
language model general vision
- 7:05
capabilities and teaches how to see how
- 7:07
to interpret pixels and so on. Then
- 7:10
comes stage three where we performed uh
- 7:12
supervised fine-tuning on 100 uh uh
- 7:15
million uh OCR uh samples. Now the um
- 7:21
stage three is primarily focused on
- 7:24
letting a general VM model become strong
- 7:26
at OCR. What that includes is having
- 7:30
diverse data across all 22 languages and
- 7:33
English and also incorporating all kinds
- 7:35
of uh uh document components such as
- 7:39
tables and uh um equations and
- 7:42
handwritten documents and so forth. Now
- 7:45
and stage four is re reinforcement
- 7:47
learning which helps push past the
- 7:50
ceiling of whatever uh supervised
- 7:53
fine-tuning is able to achieve. Here you
- 7:55
will see this is a standard recipe.
- 7:58
However, the moat here is the two things
- 8:02
underneath the data layer and the eval
- 8:05
layer. Um the first is the data engine.
- 8:09
For most of the 22 languages, there is
- 8:11
no label data available readily.
- 8:13
When label data does not exist, building
- 8:17
the data engine becomes hard. And that
- 8:20
is something we have done extensively.
- 8:22
We've built pipelines to create
- 8:24
synthetic data and doc data from real
- 8:26
documents and also helped
- 8:30
build the uh pipeline for continuously
- 8:33
improving the data that goes into
- 8:36
training based on the eval performance
- 8:38
and so on. So we are currently actively
- 8:40
looking at the paradigm of RLMs um as uh
- 8:44
uh we explore the agentic vision
- 8:46
capabilities for our models in the
- 8:48
upcoming releases. The second mode is
- 8:51
the eval. You cannot reach
- 8:53
state-of-the-art if uh um you cannot
- 8:56
measure how well your model performs. We
- 8:59
have curated extensive evals to ensure
- 9:02
what we are measuring is truly sota and
- 9:04
also truly meaningful in terms of
- 9:06
usefulness for end uh uh users. So I
- 9:11
want to take just a minute to dwell on
- 9:13
our RL pipeline uh stage four because uh
- 9:18
a lot of gain comes from RL. Essentially
- 9:21
in OCR correctness is a machine readable
- 9:24
problem right a lot of tests can be set
- 9:26
up to uh um reward and score the models
- 9:31
against uh uh these uh samples that you
- 9:34
create. And in the world of
- 9:37
deterministic OCR, these are all machine
- 9:39
uh uh verifiable. Hence, RL gives us a
- 9:43
major boost.
- 9:45
Sample a group, score with unit tests,
- 9:47
reinforce what the average uh uh value
- 9:51
to beat is, and then repeat the process.
- 9:54
And this makes RLVR for OCR very very
- 9:56
scalable.
- 9:58
Now after all the from scratch training
- 10:01
we've done and the data effort we've
- 10:03
made we were able to establish sot in
- 10:06
two of uh the global English benchmarks
- 10:09
one is CRB bench and the other is
- 10:12
omnidoc bench at launch we were at 84.3
- 10:16
on CR and then 93.2 into on omnidok
- 10:19
bench. Um the models uh that have
- 10:22
released since have moved the needle
- 10:24
quite a bit and we'll soon have a a
- 10:26
stronger model in the global leaderboard
- 10:29
as well.
- 10:31
Secondly and more importantly um on 22
- 10:34
Indian languages we have an unbeaten
- 10:37
lead even compared to all the frontier
- 10:39
models such as Gemini and uh chat GPT
- 10:42
and Opus and so on. And this is where
- 10:45
we've extended the lead significantly
- 10:47
and we remain uh uh strong compared to
- 10:50
all of these newer models that have come
- 10:52
in.
- 10:53
Now server vision pars our agentic
- 10:57
document intelligence workbench called
- 10:59
aure where we enable
- 11:03
human in the loop agentic digitizations
- 11:06
uh and uh extractions and then
- 11:08
injections for various uh downstream uh
- 11:11
document intelligence problems. We
- 11:13
provide confidence scores um and we uh
- 11:16
have block level grounding and then also
- 11:18
the ability to do uh agentic proof
- 11:20
reading etc.
- 11:23
Now benchmarks and soda are uh uh one
- 11:27
thing they have their place. Today some
- 11:29
of the largest enterprises in the world
- 11:31
from insurance to banking to governments
- 11:34
to historical preservation organizations
- 11:37
are using server vision to digitize more
- 11:40
than 35 million pages across English and
- 11:43
uh uh 22 Indian languages. The model is
- 11:47
available as API and on prem and then
- 11:51
the agentic platform.
- 11:54
So in conclusion until 4 months ago uh
- 11:58
there was no sovereign model uh from
- 12:00
India. Today we have server vision which
- 12:03
was trained from scratch and has
- 12:05
established sot um at a price point that
- 12:08
is extremely competitive with uh all the
- 12:11
other solutions including open and close
- 12:14
source. Uh first we've started by uh uh
- 12:17
solving some of the hardest problems for
- 12:19
Indian language document intelligence.
- 12:22
Soon uh we'll be releasing general
- 12:24
purpose uh VLMs which are capable of
- 12:26
much more uh uh vision capabilities and
- 12:30
uh look forward to uh uh all of you
- 12:32
trying out our models. Thank you.
- 12:36
[applause]
- 12:39
Happy to answer any questions. Yeah.
- 12:48
Yes.
- 12:49
>> Yes. Absolutely. Uh in general, the
- 12:51
language capability of the 22 languages
- 12:54
enhances English uh by quite a margin.
- 12:57
And this is applicable to any low
- 12:59
resource language, not just Indian low
- 13:02
resource languages.
- 13:05
>> Yeah.
- 13:27
Right. Um we don't quite go in that
- 13:30
direction with this model because this
- 13:31
is a vision focused uh uh model wherein
- 13:34
we are focused on extracting information
- 13:36
or knowledge from documents. But yes,
- 13:39
there could be uh some parallels to um
- 13:42
helping models use general languages to
- 13:46
speed up coding as well. But yeah,
- 13:47
that's not the uh periphery of this uh
- 13:50
uh work.
- 13:53
Yeah.
- 14:10
Right. Um so there are two things uh we
- 14:13
uh create artificial documents synthetic
- 14:15
documents as they are called for general
- 14:18
post-raining uh that includes SFT and
- 14:21
RL. Um however coming to your specific
- 14:24
question on RL uh we don't uh you can
- 14:27
generate uh synthetic documents there as
- 14:29
well. However, um the best thing to do
- 14:32
is to take real world documents complex
- 14:34
enough that uh help you set up unit
- 14:36
tests or different kinds of uh uh
- 14:39
rewards, right? like say a a reward
- 14:42
based on character error rate or a a
- 14:45
reward based on table structure or a
- 14:47
math equation or something uh that is
- 14:49
pertinent to a language or like grammar
- 14:52
rewards or so on and then help the model
- 14:55
iteratively improve based on uh um rules
- 14:58
that the model is able to produce at
- 14:59
different uh u settings. Yeah. Yes.
- 15:21
Sorry, did you say big fan of Chundra?
- 15:24
>> All right. Uh, that's from a different
- 15:25
lab. Uh, I'm also a big fan of the lab
- 15:28
that produced Chundra. But yes, took
- 15:30
your question uh on Indic benchmark.
- 15:32
Yes, we will release the server indic
- 15:34
benchmark that we have created for 22
- 15:38
languages and it uh spans um a a huge
- 15:42
time period starting from 1800s until
- 15:45
modern day and also different kinds of
- 15:46
layouts, different kinds of documents in
- 15:49
Indian languages. You can imagine
- 15:50
documents with pros, poetry, literature,
- 15:53
uh tables, finance and all of those
- 15:55
things. We'll soon release that
- 15:57
benchmark uh in public as well.
- 16:25
So translation is again uh
- 16:27
transliteration is again not directly
- 16:30
involved here because in OCR what we
- 16:32
care about is high fidelity extraction
- 16:35
right uh you want even if there is a
- 16:37
mistake in an image you want that
- 16:38
mistake to be extracted correctly and
- 16:40
not the model uh uh making changes at
- 16:43
whim uh hence that is not directly
- 16:45
applicable but yes uh what we see is a
- 16:48
lot of data that is coming through
- 16:50
transliteration for even OCR training
- 16:52
now and the um jury is out on what is
- 16:56
the quality of that data and how useful
- 16:58
it is etc
- 17:00
Yeah.
- 17:27
Right. Um there are few things to
- 17:29
consider. Um first is no other model
- 17:33
frontier uh closed source or open model
- 17:36
does well with complex Indian language
- 17:39
documents right so for a size of uh for
- 17:43
a country with 1.4 4 billion people you
- 17:47
want to be able to address their
- 17:49
day-to-day lives in uh uh terms of
- 17:51
document intelligence problems because
- 17:53
there is a lot of paperwork in India
- 17:55
right it is a up and cominging country
- 17:58
and it's still being digitized as we
- 18:00
speak and it's important that
- 18:02
representation or ability to digitize
- 18:04
the country exists to begin with.
- 18:06
Secondly on uh the training side what we
- 18:10
have uh uh done in particular is to
- 18:14
create data that can be added to a lot
- 18:18
of training downstream. So uh we are at
- 18:20
a very early stage in terms of AI
- 18:22
becoming you know a regular parts of our
- 18:26
lives and we need the data to start to
- 18:29
be able to eventually get to a place
- 18:30
where we can uh have personalized agents
- 18:34
in the language you prefer in language I
- 18:36
prefer and however I want in uh uh in
- 18:39
some so to do all of that we need to
- 18:41
start somewhere and the data needs to be
- 18:43
created and if the data is of good
- 18:45
quality then that helps the model become
- 18:47
sota and If a model is sot then uh from
- 18:52
uh insurance agencies to government
- 18:54
organizations to others who care about
- 18:57
sovereignity in AI right uh as a
- 18:59
government body I cannot have a model
- 19:02
deployed elsewhere and I don't know
- 19:03
where the data is going for uh uh the
- 19:06
transcriptions so I need to be able to
- 19:09
control where the data is sent and when
- 19:11
it is used how much it is used etc. So
- 19:14
sovereignity becomes very crucial and
- 19:16
hence this model really is now uh uh
- 19:18
like it's been what four months since we
- 19:20
launched and already we are we are
- 19:22
digitizing 35 million pages. So that is
- 19:25
that shows that the market was waiting
- 19:27
for something sovereign in this space
- 19:28
that can really kickstart uh the AI
- 19:31
digitization wave in India. So yeah
- 19:34
primarily like three aspects one on uh
- 19:36
sovereignity the other is the model uh
- 19:39
capability itself and the third is data
- 19:41
uh that is required to train these
- 19:43
models.
- 19:54
Yeah, it is it is uh um 40% uh indic and
- 19:59
then uh the rest is English and
- 20:01
comprises of math and code etc.
- 20:08
>> All right.
- 20:09
Just a curious question.
- 20:24
Um currently the uh the deployments
- 20:28
we've made uh with this model are in
- 20:30
different states uh uh trying to
- 20:33
digitize regional languages and along
- 20:35
with all the English and mixed language
- 20:38
uh uh documents and hence we'll soon uh
- 20:42
be able to train with the um uh feedback
- 20:47
we get from uh the current deployment.
- 20:49
So yeah, we have started that uh
- 20:50
pipeline as well.
- 21:07
>> [music]