shravan / topic.py
remotewith's picture
Duplicate from peb-peb/shravan
6aff00b
raw
history blame contribute delete
156 Bytes
from transformers import pipeline
def topic_gen(text):
topic = pipeline("text2text-generation", model="knkarthick/TOPIC-DIALOGSUM")
return topic(text)