How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="ashercn97/manatee-7b")
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("ashercn97/manatee-7b")
model = AutoModelForCausalLM.from_pretrained("ashercn97/manatee-7b")
Quick Links

This is based on llama-2-7b and fine-tuned on two Orca datasets. It took around 6 hours on 1 L40 GPU.

Manatee is one of my first projects, so I hope you enjoy using it! To use it, you can either use it through the transformer library or if you have limited memory, you can use the GPTQ version that is on my profile!

In the future, I plan on fine-tuning higher parameter models or making a better version of Manatee-7b.

Downloads last month
989
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Dataset used to train ashercn97/manatee-7b

Spaces using ashercn97/manatee-7b 29