Update README.md
Browse files
README.md
CHANGED
@@ -5,6 +5,15 @@ language:
|
|
5 |
---
|
6 |
This is the proposition segmentation model from "Sub-Sentence Encoder: Contrastive Learning of Propositional Semantic Representations" by Chen et. al. 2023.
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
## Usage
|
9 |
The prompt to the model is formatted like: `segment sentence: {input_sentence}`.
|
10 |
|
|
|
5 |
---
|
6 |
This is the proposition segmentation model from "Sub-Sentence Encoder: Contrastive Learning of Propositional Semantic Representations" by Chen et. al. 2023.
|
7 |
|
8 |
+
## What does the model do?
|
9 |
+
It splits a complex, long-form sentence into a list of propositions -- i.e. self-contained, atomic pieces of meaning in the sentence. For example, the following sentence --
|
10 |
+
```
|
11 |
+
"Dracula is a novel by Bram Stoker featuring Count Dracula as the protagonist."
|
12 |
+
```
|
13 |
+
will be split into --
|
14 |
+
```
|
15 |
+
['Dracula is a novel by Bram Stoker.', 'Count Dracula is the protagonist of Dracula.']
|
16 |
+
```
|
17 |
## Usage
|
18 |
The prompt to the model is formatted like: `segment sentence: {input_sentence}`.
|
19 |
|