---
license: apache-2.0
language:
- en
- hi
tags:
- moe
- slm
- skt-ai-labs
- 3b-model
- mixture-of-experts
- bilingual
library_name: pytorch
pipeline_tag: text-generation
datasets:
- SKT-NRS/SKT-OMNI-CORPUS-2T
model-index:
- name: SKT-ST-X-0-3B-V1
results:
- task: {type: Classification}
dataset: {type: mteb/mtop_domain, name: MTEB MTOPDomainClassification (en)}
metrics: [{type: accuracy, value: 70.95}]
- task: {type: Classification}
dataset: {type: mteb/amazon_polarity, name: MTEB AmazonPolarityClassification}
metrics: [{type: accuracy, value: 46.88}]
- task: {type: STS}
dataset: {type: mteb/biosses-sts, name: MTEB BIOSSES}
metrics: [{type: cos_sim_pearson, value: 47.19}]
- task: {type: Reranking}
dataset: {type: mteb/scidocs-reranking, name: MTEB SciDocsRR}
metrics: [{type: mrr, value: 28.33}]
- task: {type: Classification}
dataset: {type: mteb/tweet_sentiment, name: Tweet Sentiment}
metrics: [{type: f1, value: 26.51}]
- task: {type: Clustering}
dataset: {type: mteb/stackexchange_clustering, name: StackExchange Clustering}
metrics: [{type: v_measure, value: 35.55}]
---
###
SKT AI LABS
#
SKT-ST-X-0-3B-V1
COMPACT MOE POWERHOUSE
3B Total Params • 1.1B Active • English & Hindi
A highly efficient Small Language Model (SLM) built on Mixtral MoE architecture for stability.
Delivers intelligent responses with a tiny footprint.
🏗️ Model Architecture
| Total Parameters | ~3 Billion |
| Active Parameters | ~1.1 Billion (2 Experts/Token) |
| Architecture | Mixture of Experts (MoE) |
| Number of Experts | 4 |
| Context Length | 8K Tokens |
| Training Data | 40B Tokens (SKT-OMNI-CORPUS-2T) |
✨ Key Capabilities
- Bilingual Mastery: Fluent in both English and Hindi.
- Efficient Reasoning: Logical thinking and problem solving despite small size.
- Basic Coding: Python scripts, algorithms, and logic debugging.
- Creative Writing: Stories, poems, and roleplay with personality.
- Knowledge QA: Accurate general knowledge retrieval.
## 🛠️ Quick Start Guide
### Installation
```bash
pip install transformers accelerate torch peft bitsandbytes
```
### Basic Inference
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_id = "sKT-Ai-Labs/SKT-ST-X-0-3B"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
device_map="auto",
torch_dtype=torch.float16
)
prompt = "What is Quantum Physics?"
formatted = f"<|user|>\n{prompt}\n<|assistant|>\n"
inputs = tokenizer(formatted, return_tensors="pt").to("cuda")
outputs = model.generate(**inputs, max_new_tokens=100)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response.split("<|assistant|>")[-1].strip())
```
### ⚡ 4-bit Quantization (Low VRAM)
```python
from transformers import BitsAndBytesConfig
quant_config = BitsAndBytesConfig(
load_in_4bit=True,
bnb_4bit_compute_dtype=torch.float16)
model = AutoModelForCausalLM.from_pretrained(
model_id,
quantization_config=quant_config,
device_map="auto"
)
```
---
## 📊 MTEB Benchmark Highlights
| Task | Dataset | Metric | Score |
| :--- | :--- | :--- | :--- |
| **Classification** | MTOP Domain (en) | Accuracy | **70.95** |
| **Classification** | Amazon Polarity | Accuracy | **46.88** |
| **STS** | BIOSSES | Cosine Pearson | **47.19** |
| **Reranking** | SciDocs RR | MRR | **28.33** |
| **Classification** | Tweet Sentiment | F1 | **26.51** |
| **Clustering** | StackExchange | V-Measure | **35.55** |
*Full benchmark results available in the model metadata.*
---
## ❤️ Support Our Mission
🙏 Drop a Heart ❤ For Our Hard Work!
If you believe in the vision of Sovereign Indian AI, please show your support by dropping a heart below. Your encouragement fuels our journey!
Kindly follow us for more updates and contribute to our open-source journey!
## 📜 License & Citation
This model is released under the **Apache-2.0 License**.
- [View Full License](Index/USED.MD)
- [Third Party Notices](Index/THIRD_PARTY_NOTICES.MD)
```bibtex
@misc{SKT-ST-X-0-3B,
author = {SKT AI LABS, India},
title = {SKT-ST-X-0-3B: A Compact Mixture of Experts Model},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/sKT-Ai-Labs/SKT-ST-X-0-3B}
}
```
Made with ❤️ by SKT AI LABS
Support: support@sktailabs.in