Suryanshg's picture
Upload PEFT LoRA adapter: Classification-DoD-translator
48a7bc2 verified
|
Raw
History Blame Contribute Delete
1.23 kB
metadata
base_model: meta-llama/Llama-3.1-8B-Instruct
library_name: peft
pipeline_tag: text-generation
license: llama3.1
tags:
  - lora
  - peft
  - transformers
  - soft-prompt
  - instruction-generation

Soft-to-Hard Prompt Translator

LoRA adapter that translates soft prompt embeddings into natural-language task instructions. Part of the "Learning to Translate from Soft to Hard LLM Prompts" project.

Usage

from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer

base_model = AutoModelForCausalLM.from_pretrained(
    "meta-llama/Llama-3.1-8B-Instruct", torch_dtype="auto", device_map="auto",
)
model = PeftModel.from_pretrained(base_model, "<path-to-adapter>")
tokenizer = AutoTokenizer.from_pretrained("meta-llama/Llama-3.1-8B-Instruct")

Training Details

Parameter Value
Base model meta-llama/Llama-3.1-8B-Instruct
LoRA rank 4
LoRA alpha 8
Dropout 0.1
Target modules down_proj, gate_proj, k_proj, up_proj, v_proj, o_proj, q_proj
PEFT version 0.18.0

License & Attribution

Built with Llama.

Llama 3.1 is licensed under the Llama 3.1 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved.