Llama 3 8B Newsletter Writer
Published by @inbox_craft · Community adapter
Newsletter section generation: subject lines, preview text, lead paragraphs, curated link summaries, and CTAs. Trained on high open-rate Substack and Beehiiv publications.
Usage
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("meta-llama/Meta-Llama-3-8B-Instruct")
base = AutoModelForCausalLM.from_pretrained("meta-llama/Meta-Llama-3-8B-Instruct")
model = PeftModel.from_pretrained(base, "modelforgelab/llama3-8b-newsletter-lora")
inputs = tokenizer("Your prompt here", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=256)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Compatibility
- transformers>=4.40
- vLLM
You might also like
text-generation
public
Llama 3 8B Instruct (GGUF Q4)
meta-llama/Meta-Llama-3-8B-Instruct
text-generation
public
Llama 3 8B Customer Support
meta-llama/Meta-Llama-3-8B-Instruct
text-generation
public
Llama 3 8B Fitness Coach
meta-llama/Meta-Llama-3-8B-Instruct
text-generation
public
Llama 3 8B SEO Content
meta-llama/Meta-Llama-3-8B-Instruct