Action_Items / README.md
knkarthick's picture
Update README.md
34e7930
|
raw
history blame
1.65 kB
metadata
language: en
tags:
  - distilbert
  - seq2seq
  - text-classification
license: apache-2.0
datasets:
  - Custom
metrics:
  - Accuracy
  - Precision
  - Recall
widget:
  - text: Alright, I will have to do that without fail!
model-index:
  - name: Action_Items
    results:
      - task:
          name: Action Item Classification
          type: text-classification
        dataset:
          name: Custom
          type: custom
        metrics:
          - name: Validation Accuracy
            type: accuracy
            value: null
          - name: Validation Precision
            type: precision
            value: null
          - name: Validation Recall
            type: recall
            value: null
          - name: Test Accuracy
            type: accuracy
            value: null
          - name: Test Precision
            type: precision
            value: null
          - name: Test Recall
            type: recall
            value: null

Model obtained by Fine Tuning 'distilbert' using Custom Dataset!

LABEL_0 - Not an Action Item LABEL_1 - Action Item

Usage

Example 1

from transformers import pipeline
summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
text = '''
                                      
'''
summarizer(text)

Example 2

from transformers import pipeline
summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
text = '''

'''
summarizer(text)

Example 3

from transformers import pipeline
summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
text = '''

'''
summarizer(text)

Example 4

from transformers import pipeline
summarizer = pipeline("text-classification", model="knkarthick/Action_Items")
text = '''

'''
summarizer(text)