Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
peb-peb
/
shravan
like
2
Runtime error
App
Files
Files
Community
c88db77
shravan
/
topic.py
peb-peb
fix topic
9603f5e
over 1 year ago
raw
Copy download link
history
blame
Safe
156 Bytes
from
transformers
import
pipeline
def
topic_gen
(
text
):
topic = pipeline(
"text2text-generation"
, model=
"knkarthick/TOPIC-DIALOGSUM"
)
return
topic(text)