Instructions to use lordtyrion/adaption_india_finance_qa_risks with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use lordtyrion/adaption_india_finance_qa_risks with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("google/gemma-4-31B-it") model = PeftModel.from_pretrained(base_model, "lordtyrion/adaption_india_finance_qa_risks") - Notebooks
- Google Colab
- Kaggle
adaption_india_finance_qa_risks
Model Training
A LORA adapter for google/gemma-4-31B-it. This model was trained with SFT using Adaption's AutoScientist on the india_finance_qa_risks dataset.
AutoScientist Config
{
"job_id": "61a5a623-e875-4bd5-b2aa-33ea3f38a408",
"training_experiment_id": "1d32c4b8-e72b-4afb-888a-7d8bbb106dc2",
"original_model_name": "google/gemma-4-31B-it",
"trained_model_name": "adaption_india_finance_qa_risks",
"training_method": "sft",
"training_type": "lora",
"data_format": "chat",
"hyperparams": {
"lora": "true",
"lora_r": 8,
"n_evals": 5,
"n_epochs": 1,
"batch_size": "max",
"lora_alpha": 8,
"lora_dropout": 0,
"min_lr_ratio": 0.1,
"warmup_ratio": 0.1,
"weight_decay": 0,
"learning_rate": 0.0001,
"max_grad_norm": 2,
"base_model_size": "31B",
"train_on_inputs": "false",
"training_method": "sft",
"lr_scheduler_type": "cosine",
"scheduler_num_cycles": 0.5,
"lora_trainable_modules": "q_proj,v_proj"
}
}
Training Data
The model was trained on 25,868 rows of adapted data with the following domain distribution: personal-finance (73%), legal (10%), math (6%), governance (3%), agriculture (2%), corporate-business (2%), technology (1%), hr (1%), parenting-family (1%), academic-education (1%), medical (0%), how-to (0%), news (0%), product-advice (0%), personal-growth (0%).
Model Evaluation
The model was evaluated on an in-distribution held-out test set as well as a broader domain-specific test set to measure generalization.
How to use
pip install torch transformers peft
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
BASE = "google/gemma-4-31B-it"
ADAPTER = "<this-repo-id>"
device = "cuda" if torch.cuda.is_available() else "cpu"
dtype = torch.float32 if device == "cpu" else torch.bfloat16
base = AutoModelForCausalLM.from_pretrained(BASE, dtype=dtype).to(device)
model = PeftModel.from_pretrained(base, ADAPTER)
# Optional: merge the LoRA weights into the base for faster inference
model = model.merge_and_unload()
model.eval()
tokenizer = AutoTokenizer.from_pretrained(BASE)
messages = [{"role": "user", "content": "Hello!"}]
text = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(device)
with torch.inference_mode():
out = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
- Downloads last month
- 8
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

