Views
No views yet
1from transformers import pipeline
2summarizer = pipeline("text-classification", model="knkarthick/Action_Decisions")
3text = '''
4Customer portion will have the dependency of , you know , fifty five probably has to be on XGEVA before we can start that track , but we can at least start the enablement track for sales and CSM who are as important as customers because they're the top of our funnel , especially sales.
5'''
6summarizer(text)1from transformers import pipeline
2summarizer = pipeline("text-classification", model="knkarthick/Action_Decisions")
3text = '''
4India, officially the Republic of India, is a country in South Asia.
5'''
6summarizer(text)1from transformers import pipeline
2summarizer = pipeline("text-classification", model="knkarthick/Action_Decisions")
3text = '''
4We have been running the business successfully for over a decade now.
5'''
6summarizer(text)