Shlok307/Interview_questions
Viewer โข Updated โข 5k โข 31 โข 2
How to use Shlok307/ai_interview-lora with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("google/gemma-3-1b-it")
model = PeftModel.from_pretrained(base_model, "Shlok307/ai_interview-lora")How to use Shlok307/ai_interview-lora with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="Shlok307/ai_interview-lora")
messages = [
{"role": "user", "content": "Who are you?"},
]
pipe(messages) # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("Shlok307/ai_interview-lora", dtype="auto")How to use Shlok307/ai_interview-lora with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Shlok307/ai_interview-lora"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Shlok307/ai_interview-lora",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/Shlok307/ai_interview-lora
How to use Shlok307/ai_interview-lora with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "Shlok307/ai_interview-lora" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Shlok307/ai_interview-lora",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "Shlok307/ai_interview-lora" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Shlok307/ai_interview-lora",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'How to use Shlok307/ai_interview-lora with Docker Model Runner:
docker model run hf.co/Shlok307/ai_interview-lora
This model is a QLoRA fine-tuned version of Gemma-3-1B-IT, trained on a curated dataset of 5,002 interview-style Q&A samples across:
The goal is to enhance Gemma-3 into a technical interview assistant, capable of:
The model was fine-tuned on a dataset containing 5,002 samples with the fields:
| Field | Description |
|---|---|
| domain | AI, General Programming, Web Development |
| question | Interview question from that domain |
| answer | Ground-truth, explanation-style answer |
Each training row was converted into:
"Answer this <domain> interview question: <question>""<answer>"from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
model_id = "Shlok307/ai_interview-lora"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
device_map="auto",
torch_dtype=torch.float16
)
prompt = [
{"role": "user", "content": "Answer this AI interview question: What is backpropagation?"}
]
input_ids = tokenizer.apply_chat_template(
prompt,
tokenize=True,
add_generation_prompt=True,
return_tensors="pt"
).to(model.device)
output = model.generate(
input_ids,
max_new_tokens=200,
do_sample=True,
temperature=0.7
)
print(tokenizer.decode(output[0], skip_special_tokens=True))
@model{gemma3_interview_lora,
title={Gemma 3 Interview LoRA โ 1B IT},
author={Shlok Talhar},
year={2025},
url={https://huggingface.co/Shlok307/gemma3-interview-lora}
}