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.

Dave86CH_epic_badass_marcus_aurelius_fighting_0c2c720e-bcff-471e-9a05-89aecb45722a.png Marcus Aurelius

SageBeluga13 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

SageBeluga13B.jpg

SageBeluga13.png

Past experiments

https://dscompounding.com/2023/03/31/chapter-iii-digital-marcus-aurelius/

Downloads last month
3
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the model is not deployed on the HF Inference API.