Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- feature-extraction
|
5 |
+
- sentence-similarity
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
size_categories:
|
9 |
+
- 1K<n<10K
|
10 |
+
annotations_creators:
|
11 |
+
- expert-generated
|
12 |
+
language_creators:
|
13 |
+
- expert-generated
|
14 |
+
source_datasets:
|
15 |
+
- original
|
16 |
+
task_ids:
|
17 |
+
- semantic-similarity
|
18 |
+
---
|
19 |
+
|
20 |
+
# Dataset Card for FinSTS Golden Dataset
|
21 |
+
|
22 |
+
## Table of Contents
|
23 |
+
- [Dataset Summary](#dataset-summary)
|
24 |
+
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
|
25 |
+
- [Languages](#languages)
|
26 |
+
- [Dataset Structure](#dataset-structure)
|
27 |
+
- [Data Splits](#data-splits)
|
28 |
+
- [Dataset Creation](#dataset-creation)
|
29 |
+
- [Citing & Authors](#citing--authors)
|
30 |
+
|
31 |
+
## Dataset Summary
|
32 |
+
|
33 |
+
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 training and evaluating models in financial text analysis, clustering, and semantic search.
|
34 |
+
|
35 |
+
## Supported Tasks and Leaderboards
|
36 |
+
|
37 |
+
- **Text Similarity**: This dataset can be used to train models to measure the semantic similarity between pairs of financial sentences.
|
38 |
+
- **Clustering**: The dataset can be utilized to cluster sentences based on their semantic content.
|
39 |
+
- **Semantic Search**: It is useful for creating models that improve search results by understanding the semantic meaning of queries and documents.
|
40 |
+
|
41 |
+
## Languages
|
42 |
+
|
43 |
+
The dataset is in English.
|
44 |
+
|
45 |
+
## Dataset Structure
|
46 |
+
|
47 |
+
### Data Fields
|
48 |
+
|
49 |
+
- `sentence1`: The first sentence in the pair.
|
50 |
+
- `sentence2`: The second sentence in the pair.
|
51 |
+
- `similarity_score`: A score between 0 and 5 indicating the degree of semantic similarity between the two sentences.
|
52 |
+
|
53 |
+
### Example
|
54 |
+
|
55 |
+
```json
|
56 |
+
{
|
57 |
+
"sentence1": "The company's revenue grew significantly.",
|
58 |
+
"sentence2": "The firm experienced a substantial increase in sales.",
|
59 |
+
"similarity_score": 4.5
|
60 |
+
}
|