Indiagpt-1 ๐ง ๐ฎ๐ณ
A fine-tuned bilingual chatbot (Hindi + English + Hinglish) created by Mahesh (India AI Official).
๐งพ Description
Indiagpt-1 is a custom language model trained to understand and respond naturally in Hindi, English, and Hinglish.
This model aims to bring AI interaction closer to Indian languages and culture.
๐ Features
- Understands Hindi, English, and Hinglish
- Fine-tuned from GPT-2 architecture
- Trained for conversational chat use-cases
- Lightweight and fast for experimentation
๐ค Creator Info
Created by: Mahesh (16-year-old developer from Kushinagar, Uttar Pradesh, India)
Profile: https://huggingface.co/indiaaioffcial
Goal: To work with global AI companies like OpenAI, Google, and Microsoft.
๐ก Usage
You can test this model via:
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "indiaaioffcial/indiagpt-1"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)
inputs = tokenizer("เคจเคฎเคธเฅเคคเฅ! เคเคช เคเฅเคธเฅ เคนเฅ?", return_tensors="pt")
outputs = model.generate(**inputs, max_length=100)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))