How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
# Warning: Pipeline type "summarization" is no longer supported in transformers v5.
# You must load the model directly (see below) or downgrade to v4.x with:
# 'pip install "transformers<5.0.0'
from transformers import pipeline

pipe = pipeline("summarization", model="LukeMoore11/Big-Benjamin")
# Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM

tokenizer = AutoTokenizer.from_pretrained("LukeMoore11/Big-Benjamin")
model = AutoModelForSeq2SeqLM.from_pretrained("LukeMoore11/Big-Benjamin")
Quick Links

Validation Metrics

  • Loss: 1.379
  • Rouge1: 24.817
  • Rouge2: 20.238
  • RougeL: 24.044
  • RougeLsum: 24.222
Downloads last month
23
Safetensors
Model size
0.7B params
Tensor type
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Space using LukeMoore11/Big-Benjamin 1