Akshara
Collection
🚀 Introducing Akshara—AI built for India! 🇮🇳✨
Bringing powerful, language-first AI to every region.
Shaping the future of AI for Bharat!
•
2 items
•
Updated
•
1
Akshara-2B-Hindi is a powerful language model optimized for Hindi and English text processing. This 2 billion parameter model leverages an advanced architecture to provide state-of-the-art performance in natural language understanding and generation tasks.
pip install transformers
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "SVECTOR-CORPORATION/Akshara-2B-Hindi"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)
text = "आज का मौसम" # Example Hindi text: "Today's weather"
inputs = tokenizer(text, return_tensors="pt")
outputs = model.generate(
inputs.input_ids,
max_length=100,
temperature=0.7,
do_sample=True
)
generated_text = tokenizer.decode(outputs[0], skip_special_tokens=True)
If you use this model in your research, please cite:
@misc{akshara2b2024,
title={Akshara-2B-Hindi: A Bilingual Language Model},
author={SVECTOR CORPORATION},
year={2025},
}
MIT License
Copyright (c) 2025 SVECTOR CORPORATION