Paula Leonova commited on
Commit
0a49db3
β€’
1 Parent(s): 1714a04

Update README and name

Browse files
Files changed (1) hide show
  1. README.md +9 -5
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Multi Label Long Text
3
  emoji: πŸ“š
4
  colorFrom: indigo
5
  colorTo: gray
@@ -8,10 +8,14 @@ app_file: app.py
8
  pinned: false
9
  ---
10
 
11
- **Interactive version**: This app is hosted on https://huggingface.co/spaces/pleonova/multi-label-long-text
 
12
 
13
- **Objectvie**: As the name may suggest, the goal of this app is to identify multiple relevant labels for long text.
 
14
 
15
- **Model**: zero-shot learning - facebook/bart-large-mnli summarizer and classifier
 
16
 
17
- **Approach**: Updating the head of the neural network, we can use the same pretrained bart model to first summarize our long text by first splitting out our long text into chunks of 1024 tokens and then generating a summary for each of the text chunks. Next, all the summaries are concanenated and the bart model is used classify the summarized text. Alternatively, one can also classify the whole text as is.
 
1
  ---
2
+ title: Multi Label Summary Text
3
  emoji: πŸ“š
4
  colorFrom: indigo
5
  colorTo: gray
8
  pinned: false
9
  ---
10
 
11
+ #### Interactive version
12
+ This app is hosted on https://huggingface.co/spaces/pleonova/multi-label-summary-text
13
 
14
+ #### Objective
15
+ As the name may suggest, the goal of this app is to identify multiple relevant labels for long text.
16
 
17
+ #### Model
18
+ facebook/bart-large-mnli zero-shot learning summarizer and classifier
19
 
20
+ #### Approach
21
+ Updating the head of the neural network, we can use the same pretrained bart model to first summarize our long text by first splitting out our long text into chunks of 1024 tokens and then generating a summary for each of the text chunks. Next, all the summaries are concanenated and the bart model is used classify the summarized text. Alternatively, one can also classify the whole text as is.