YAML Metadata
Warning:
empty or missing yaml metadata in repo card
(https://huggingface.co/docs/hub/model-cards#model-card-metadata)
"My name is Epicurus, but my friends call me "Epic" for short. ".
SageBeluga13B Stoic assistant fine-tuned by dscompounding.com.
Marcus AureliusSageBeluga13 Model README
Description
The SageBeluga13
model, hosted on Hugging Face, has been fine-tuned for specific tasks.
To utilize this model:
from transformers import AutoTokenizer, AutoModelForCausalLM
import transformers
import torch
model = "davesoma/SageBeluga13"
tokenizer = AutoTokenizer.from_pretrained(model)
pipeline = transformers.pipeline(
"text-generation",
model=model,
tokenizer=tokenizer,
torch_dtype=torch.float32
)
sequences = pipeline(
"Girafatron is obsessed with giraffes...",
max_length=200,
do_sample=True,
top_k=10,
num_return_sequences=1,
eos_token_id=tokenizer.eos_token_id
)
for seq in sequences:
print(f"Result: {seq['generated_text']}")
Example
Past experiments
https://dscompounding.com/2023/03/31/chapter-iii-digital-marcus-aurelius/
- Downloads last month
- 17
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.