Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated fromΒ
peb-peb/shravan
abhi99555
/
abhi
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
abhi
/
summary.py
abhi99555
Duplicate from peb-peb/shravan
d532a4d
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
181 Bytes
from
transformers
import
pipeline
def
summarizer
(
text
):
summ = pipeline(
"summarization"
, model=
"knkarthick/MEETING-SUMMARY-BART-LARGE-XSUM-SAMSUM-DIALOGSUM"
)
return
summ(text)