How to use from the
Use from the
llama-cpp-python library
# Gated model: Login with a HF token with gated access permission
hf auth login
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="gpsworld8800/onomastics",
	filename="onomastics.gguf",
)
llm.create_chat_completion(
	messages = "No input example has been defined for this model task."
)

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

🧾 Model Card: your-model-name

πŸ“Œ Model Details

  • Developed by: gpsworld8800
  • Model type: Large Language Model
  • Architecture: LLaMA
  • Language(s): English / Hindi / Multilingual
  • License: Apache 2.0

πŸ› οΈ Intended Uses

  • Predicting religion/ethnicity from Indian names
  • Research on Indian onomastics & linguistics
  • Educational or demo purposes

⚠️ Not intended for:

  • Making decisions in sensitive contexts (hiring, loans, etc.)
  • Any discriminatory use

πŸ§‘β€πŸ’» How to Use

from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("gpsworld8800/onomastics")
model = AutoModelForCausalLM.from_pretrained("gpsworld8800/onomastics")

inputs = tokenizer("Prathamesh Gate", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=20)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Downloads last month
-
GGUF
Model size
8B params
Architecture
llama
Hardware compatibility
Log In to add your hardware

We're not able to determine the quantization variants.

Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Evaluation results