Update README.md
Browse files
README.md
CHANGED
@@ -21,13 +21,11 @@ size_categories:
|
|
21 |
|
22 |
## Dataset Summary
|
23 |
|
24 |
-
The FinSTS Golden Dataset is designed for financial semantic textual similarity tasks. It contains a development set of 2001 sentence pairs and a test set of 1999 sentence pairs, annotated to reflect the degree of semantic similarity between financial texts. This dataset is ideal for
|
25 |
|
26 |
## Supported Tasks and Leaderboards
|
27 |
|
28 |
-
- **Text Similarity**: This dataset can be used to
|
29 |
-
- **Clustering**: The dataset can be utilized to cluster sentences based on their semantic content.
|
30 |
-
- **Semantic Search**: It is useful for creating models that improve search results by understanding the semantic meaning of queries and documents.
|
31 |
|
32 |
## Languages
|
33 |
|
@@ -37,15 +35,18 @@ The dataset is in English.
|
|
37 |
|
38 |
### Data Fields
|
39 |
|
|
|
40 |
- `sentence1`: The first sentence in the pair.
|
41 |
- `sentence2`: The second sentence in the pair.
|
42 |
-
- `
|
43 |
-
|
44 |
### Example
|
45 |
|
46 |
```json
|
47 |
{
|
48 |
-
"
|
49 |
-
"
|
50 |
-
"
|
|
|
|
|
51 |
}
|
|
|
21 |
|
22 |
## Dataset Summary
|
23 |
|
24 |
+
The FinSTS Golden Dataset is designed for financial semantic textual similarity tasks. It contains a development set of 2001 sentence pairs and a test set of 1999 sentence pairs, annotated to reflect the degree of semantic similarity between financial texts. This dataset is ideal for evaluating models in financial text analysis.
|
25 |
|
26 |
## Supported Tasks and Leaderboards
|
27 |
|
28 |
+
- **Text Similarity**: This dataset can be used to evaluate models measuring the semantic similarity between pairs of financial sentences.
|
|
|
|
|
29 |
|
30 |
## Languages
|
31 |
|
|
|
35 |
|
36 |
### Data Fields
|
37 |
|
38 |
+
- `split`: Indicates whether the data point belongs to the development or test set.
|
39 |
- `sentence1`: The first sentence in the pair.
|
40 |
- `sentence2`: The second sentence in the pair.
|
41 |
+
- `gpt_score`: An integer score between 0 and 5 indicating the degree of semantic similarity between the two sentences, annotated by GPT-4 Turbo API.
|
42 |
+
- `score`: An integer score between 0 and 5 indicating the degree of semantic similarity between the two sentences, annotated by 4 human experts.
|
43 |
### Example
|
44 |
|
45 |
```json
|
46 |
{
|
47 |
+
"split": "dev",
|
48 |
+
"sentence1": "Unlike many industrial companies, substantially all of our assets and virtually all of our liabilities are monetary in nature.",
|
49 |
+
"sentence2": "Unlike most industrial companies, virtually all of our assets and liabilities are monetary in nature.",
|
50 |
+
"gpt_score": 5,
|
51 |
+
"score": 4
|
52 |
}
|