CoolFace
Modelpublic

darthcrawl/artifex-rp-orpheus-llama-3.1-8b-lora

sourceHugging Facellama3.1updated 5mo agoView on Hugging Face
0likes18downloads
Model Card

artifex-rp-orpheus-llama-3.1-8b-lora

LoRA adapter for [meta-llama/Llama-3.1-8B-Instruct](https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct). For most users the merged model at darthcrawl/artifex-rp-orpheus-llama-3.1-8b is easier to use.

Apply

python
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

base_id = "meta-llama/Llama-3.1-8B-Instruct"
adapter_id = "darthcrawl/artifex-rp-orpheus-llama-3.1-8b-lora"

tok = AutoTokenizer.from_pretrained(base_id, use_fast=True)
model = AutoModelForCausalLM.from_pretrained(
    base_id,
    torch_dtype=torch.bfloat16,
    device_map="auto",
)
model = PeftModel.from_pretrained(model, adapter_id)

Sampling settings

ParameterValue
temperature0.85
top_p0.95
repetition_penalty1.1

System prompt

Write in vivid, restrained, intelligent prose. Concrete sensory detail.
Never pretentious. Tension carries more weight than description.
Match the user's energy and length.

License

Same license as the base model (meta-llama/Llama-3.1-8B-Instruct). Apache 2.0 for the training pipeline.