-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathservice.py
38 lines (29 loc) · 1.44 KB
/
service.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from __future__ import annotations
import bentoml
with bentoml.importing():
from transformers import pipeline
EXAMPLE_INPUT = "Breaking News: In an astonishing turn of events, the small \
town of Willow Creek has been taken by storm as local resident Jerry Thompson's cat, \
Whiskers, performed what witnesses are calling a 'miraculous and gravity-defying leap.' \
Eyewitnesses report that Whiskers, an otherwise unremarkable tabby cat, jumped \
a record-breaking 20 feet into the air to catch a fly. The event, which took \
place in Thompson's backyard, is now being investigated by scientists for potential \
breaches in the laws of physics. Local authorities are considering a town festival \
to celebrate what is being hailed as 'The Leap of the Century."
my_image = bentoml.images.PythonImage(python_version="3.11") \
.python_packages("torch", "transformers")
@bentoml.service(
image=my_image,
resources={"cpu": "2"},
traffic={"timeout": 30},
)
class Summarization:
# Define the Hugging Face model as a class variable
model_path = bentoml.models.HuggingFaceModel("sshleifer/distilbart-cnn-12-6")
def __init__(self) -> None:
# Load model into pipeline
self.pipeline = pipeline('summarization', model=self.model_path)
@bentoml.api
def summarize(self, text: str = EXAMPLE_INPUT) -> str:
result = self.pipeline(text)
return f"Hello world! Here's your summary: {result[0]['summary_text']}"