Dinesh310 commited on
Commit
669d6ac
·
verified ·
1 Parent(s): 35d4b4e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -13
README.md CHANGED
@@ -1,13 +1,20 @@
1
- ---
2
- title: Multilingual Transliteration Model
3
- emoji: 🐨
4
- colorFrom: gray
5
- colorTo: green
6
- sdk: gradio
7
- sdk_version: 6.4.0
8
- app_file: app.py
9
- pinned: false
10
- license: mit
11
- ---
12
-
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
1
+ # Multilingual Indic Transliteration
2
+
3
+ ## Model Overview
4
+ - **Base Model:** mT5-Small
5
+ - **Languages:** Hindi, Bengali, Tamil
6
+ - **Optimization:** CTranslate2 (INT8 Quantization)
7
+
8
+ ## How to Run
9
+ 1. **Install:** `pip install -r requirements.txt`
10
+ 2. **Train:** `python training/preprocess.py && python training/train.py`
11
+ 3. **Optimize:** `python optimization/benchmark.py`
12
+ 4. **Deploy:** `python app.py`
13
+
14
+ ## Benchmarking
15
+ | Model | Size | Latency | CER |
16
+ | :--- | :--- | :--- | :--- |
17
+ | PyTorch | ~1.2 GB | 145ms | 0.04 |
18
+ | CT2 INT8 | ~280 MB | 32ms | 0.042 |
19
+
20
+ **Speedup:** 4.5x faster inference.