knkarthick commited on
Commit
b470978
1 Parent(s): 709a1d1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -52,7 +52,7 @@ LABEL_1 - Action Item
52
 
53
  ## Usage
54
  # Example 1
55
- ```python (Action Item)
56
  from transformers import pipeline
57
  summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
58
  text = '''
@@ -61,31 +61,31 @@ Customer portion will have the dependency of , you know , fifty five probably ha
61
  summarizer(text)
62
  ```
63
  # Example 2
64
- ```python (Not an Action Item)
65
  from transformers import pipeline
66
  summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
67
  text = '''
68
- So that's going to come handy for their consumers to plan their migration and follow
69
  '''
70
  summarizer(text)
71
  ```
72
 
73
  # Example 3
74
- ```python (Not an Action Item)
75
  from transformers import pipeline
76
  summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
77
  text = '''
78
- Because what happens is , let's say you say 5th of January and our priority changes for whatever reason or there is a conflict or there is a bigger issue that we have to pull the engineering teams of , then that generally cannot be megabuck.
79
  '''
80
  summarizer(text)
81
  ```
82
 
83
  # Example 4
84
- ```python (Action Item)
85
  from transformers import pipeline
86
  summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
87
  text = '''
88
- But I think right now we need to get people excited about the highlights part and start meetings vision and not sober over rotated on transcription.
89
  '''
90
  summarizer(text)
91
  ```
 
52
 
53
  ## Usage
54
  # Example 1
55
+ ```python
56
  from transformers import pipeline
57
  summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
58
  text = '''
 
61
  summarizer(text)
62
  ```
63
  # Example 2
64
+ ```python
65
  from transformers import pipeline
66
  summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
67
  text = '''
68
+ India, officially the Republic of India, is a country in South Asia.
69
  '''
70
  summarizer(text)
71
  ```
72
 
73
  # Example 3
74
+ ```python
75
  from transformers import pipeline
76
  summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
77
  text = '''
78
+ Let's start the project as soon as possible as we are running out of deadline.
79
  '''
80
  summarizer(text)
81
  ```
82
 
83
  # Example 4
84
+ ```python
85
  from transformers import pipeline
86
  summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
87
  text = '''
88
+ We have been running the business successfully for over a decade now.
89
  '''
90
  summarizer(text)
91
  ```