Commit
·
b470978
1
Parent(s):
709a1d1
Update README.md
Browse files
README.md
CHANGED
|
@@ -52,7 +52,7 @@ LABEL_1 - Action Item
|
|
| 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,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
|
| 65 |
from transformers import pipeline
|
| 66 |
summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
|
| 67 |
text = '''
|
| 68 |
-
|
| 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 |
-
|
| 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 |
-
|
| 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 |
```
|