indiagpt-1 / README.md
India Ai Offcial
Update README.md
aa3da69 verified
metadata
language:
  - hi
  - en
tags:
  - text-generation
  - chatbot
  - bilingual
  - india
license: apache-2.0
pipeline_tag: text-generation

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))