Instructions to use Pranav0511/entity_model3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Pranav0511/entity_model3 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.2-3B-Instruct") model = PeftModel.from_pretrained(base_model, "Pranav0511/entity_model3") - Transformers
How to use Pranav0511/entity_model3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Pranav0511/entity_model3") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Pranav0511/entity_model3", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Pranav0511/entity_model3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Pranav0511/entity_model3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Pranav0511/entity_model3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Pranav0511/entity_model3
- SGLang
How to use Pranav0511/entity_model3 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Pranav0511/entity_model3" \ --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": "Pranav0511/entity_model3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
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 "Pranav0511/entity_model3" \ --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": "Pranav0511/entity_model3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Pranav0511/entity_model3 with Docker Model Runner:
docker model run hf.co/Pranav0511/entity_model3
File size: 4,507 Bytes
ca21cae | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | ---
base_model: meta-llama/Llama-3.2-3B-Instruct
library_name: peft
model_name: entity_model3
tags:
- base_model:adapter:meta-llama/Llama-3.2-3B-Instruct
- lora
- sft
- transformers
- trl
- entity-extraction
license: llama3.2
pipeline_tag: text-generation
---
# entity_model3
A LoRA adapter for [meta-llama/Llama-3.2-3B-Instruct](https://huggingface.co/meta-llama/Llama-3.2-3B-Instruct)
that extracts entities from multi-hop questions and labels each one **known** or **unknown**.
An entity is `known` if the question states it outright, and `unknown` if the question refers to it
only by description and it has to be resolved by a downstream lookup. This is intended as the first
stage of a retrieval pipeline over table+text corpora such as OTT-QA and HybridQA.
**This repo contains adapter weights only (~36 MB), not a full model.** You need the base model
as well — see below.
## Requirements
```bash
pip install transformers peft torch
```
The base model is gated. Accept the license at
[meta-llama/Llama-3.2-3B-Instruct](https://huggingface.co/meta-llama/Llama-3.2-3B-Instruct),
then authenticate:
```bash
hf auth login
```
Use the **Instruct** checkpoint, not the plain `Llama-3.2-3B` base model. The adapter was trained
on chat-formatted data, and pairing it with the non-instruct base loads without error but produces
degraded output.
## Usage
```python
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
from peft import PeftModel
ADAPTER = "Pranav0511/entity_model3"
tokenizer = AutoTokenizer.from_pretrained(ADAPTER)
base_model = AutoModelForCausalLM.from_pretrained(
"meta-llama/Llama-3.2-3B-Instruct",
torch_dtype=torch.float16,
device_map="auto",
)
model = PeftModel.from_pretrained(base_model, ADAPTER).eval()
SYSTEM_PROMPT = (
"Extract entities from the question and classify "
"each as known or unknown. Return JSON only."
)
def extract_entities(question: str) -> str:
messages = [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": question},
]
prompt = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
with torch.no_grad():
outputs = model.generate(**inputs, max_new_tokens=200, do_sample=False)
generated = outputs[0][inputs.input_ids.shape[1]:]
return tokenizer.decode(generated, skip_special_tokens=True).strip()
print(extract_entities(
"Who was the Conservative Party of Canada candidate of the federal "
"electoral district that was named in honour of a geographer and "
"explorer of the Canadian west?"
))
```
The system prompt above is not optional — it is the exact string used in every training example,
and output quality drops sharply without it. Greedy decoding (`do_sample=False`) is recommended
for stable JSON.
## Output format
```json
{
"entities": [
{"entity": "geographer and explorer of the Canadian west", "type": "known"},
{"entity": "federal electoral district", "type": "unknown"},
{"entity": "Conservative Party of Canada candidate", "type": "unknown"}
]
}
```
Generation is not constrained, so parse defensively — slice from the first `{` to the last `}`
and wrap `json.loads` in a try/except rather than trusting the raw string.
## Training
Supervised fine-tuning with TRL's `SFTTrainer` on 3,924 question/entity pairs, with the base model
loaded in 4-bit NF4 (QLoRA) and a bf16 compute dtype.
| | |
|---|---|
| LoRA rank / alpha / dropout | 16 / 32 / 0.05 |
| Target modules | `q_proj`, `k_proj`, `v_proj`, `o_proj` |
| Epochs | 5 |
| Effective batch size | 8 (4 × 2 grad accum) |
| Learning rate | 2e-4 |
### Framework versions
- PEFT 0.16.0
- TRL 0.20.0
- Transformers 4.53.3
- PyTorch 2.6.0+cu124
- Datasets 4.8.5
- Tokenizers 0.21.4
## License
Derived from Llama 3.2 and therefore covered by the
[Llama 3.2 Community License](https://huggingface.co/meta-llama/Llama-3.2-3B-Instruct/blob/main/LICENSE.txt).
## Citation
```bibtex
@misc{vonwerra2022trl,
title = {{TRL: Transformer Reinforcement Learning}},
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
year = 2020,
journal = {GitHub repository},
publisher = {GitHub},
howpublished = {\url{https://github.com/huggingface/trl}}
}
```
|