How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Jongbin-kr/llama3_convfin_lofit_top32_3ep"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "Jongbin-kr/llama3_convfin_lofit_top32_3ep",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/Jongbin-kr/llama3_convfin_lofit_top32_3ep
Quick Links

Jongbin-kr/llama3_convfin_lofit_top32_3ep

This is a fully merged EXAONE-3.5-7.8B-Instruct checkpoint tuned on lg_convfin_mcq_pc with LoFiT. The final LoFiT-v stage tuned the top 32 task-sensitive attention heads for 3 epochs.

The learned per-head offsets are folded into an output-projection bias in each attention layer. No LoFiT hook or adapter checkpoint is needed at inference.

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "Jongbin-kr/llama3_convfin_lofit_top32_3ep"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    trust_remote_code=True,
    torch_dtype="auto",
    device_map="auto",
)

The base EXAONE model uses custom modeling code, so trust_remote_code=True is required just as it is for the upstream checkpoint.

Downloads last month
79
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Jongbin-kr/llama3_convfin_lofit_top32_3ep

Finetuned
(129)
this model