Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -59,15 +59,15 @@ of discourse analysis and coherence.
|
|
59 |
|
60 |
1. **Sentence Positioning**
|
61 |
- **Datasets Sources**: Arxiv, Wikipedia, Rocstory
|
62 |
-
- **Description**: Determine the correct placement of a sentence within a given context of five sentences. To form the input when training classifiers encode the five sentences to vector representations
|
63 |
|
64 |
2. **Binary Sentence Ordering**
|
65 |
- **Datasets Sources**: Arxiv, Wikipedia, Rocstory
|
66 |
-
- **Description**: Determining whether two sentences are in the correct consecutive order, identifying the more coherent structure. To form the input when training classifiers, we concatenate the embeddings of both sentences with their element-wise difference:
|
67 |
|
68 |
3. **Discourse Coherence**
|
69 |
- **Datasets Sources**: Ubuntu IRC channel, Wikipedia
|
70 |
-
- **Description**: Determine whether a sequence of six sentences form a coherent paragraph. To form the input when training classifiers, encode all sentences to vector representations and concatenate all of them:
|
71 |
|
72 |
4. **Sentence Section Prediction**
|
73 |
- **Datasets Sources**: Constructed from PeerRead
|
|
|
59 |
|
60 |
1. **Sentence Positioning**
|
61 |
- **Datasets Sources**: Arxiv, Wikipedia, Rocstory
|
62 |
+
- **Description**: Determine the correct placement of a sentence within a given context of five sentences. To form the input when training classifiers encode the five sentences to vector representations \\(x_i\\). As input to the classfier we include \\(x_1\\) and the contcatination of \\(x_1 - x_i\\) for all \\(i\\): \\([x_1, x_1 - x_2, x_1-x_3,x_1-x_4,x_1-x_5]\\)
|
63 |
|
64 |
2. **Binary Sentence Ordering**
|
65 |
- **Datasets Sources**: Arxiv, Wikipedia, Rocstory
|
66 |
+
- **Description**: Determining whether two sentences are in the correct consecutive order, identifying the more coherent structure. To form the input when training classifiers, we concatenate the embeddings of both sentences with their element-wise difference: \\([x_1, x_2, x_1-x_2]\\)
|
67 |
|
68 |
3. **Discourse Coherence**
|
69 |
- **Datasets Sources**: Ubuntu IRC channel, Wikipedia
|
70 |
+
- **Description**: Determine whether a sequence of six sentences form a coherent paragraph. To form the input when training classifiers, encode all sentences to vector representations and concatenate all of them: \\([x_1, x_2, x_3, x_4, x_5, x_6]\\)
|
71 |
|
72 |
4. **Sentence Section Prediction**
|
73 |
- **Datasets Sources**: Constructed from PeerRead
|