MudassirFayaz
commited on
Commit
•
99d84e5
1
Parent(s):
53bec3c
Update README.md
Browse files
README.md
CHANGED
@@ -1,9 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
This dataset contains 3000 records, specifically designed for fine-tuning a FinGPT model to generate insights from financial statements. The dataset includes:
|
|
|
|
|
|
|
2 |
|
3 |
-
1000 Balance Sheets
|
4 |
-
1000 Income Statements
|
5 |
-
1000 Cash Flow Statements
|
6 |
Each record consists of:
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
task_categories:
|
4 |
+
- text2text-generation
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
tags:
|
8 |
+
- finance
|
9 |
+
pretty_name: Financial Statements
|
10 |
+
size_categories:
|
11 |
+
- 1K<n<10K
|
12 |
+
---
|
13 |
+
|
14 |
+
## Financial Statements Dataset for FinGPT Fine-Tuning
|
15 |
+
|
16 |
+
### Overview
|
17 |
+
|
18 |
This dataset contains 3000 records, specifically designed for fine-tuning a FinGPT model to generate insights from financial statements. The dataset includes:
|
19 |
+
- 1000 Balance Sheets
|
20 |
+
- 1000 Income Statements
|
21 |
+
- 1000 Cash Flow Statements
|
22 |
|
|
|
|
|
|
|
23 |
Each record consists of:
|
24 |
+
- **Input:** The text of a financial statement (Balance Sheet, Income Statement, or Cash Flow Statement)
|
25 |
+
- **Output:** Corresponding insights, analysis, or advice based on the financial statement
|
26 |
+
|
27 |
+
### Dataset Structure
|
28 |
+
|
29 |
+
Each entry in the dataset is structured as follows:
|
30 |
|
31 |
+
```json
|
32 |
+
{
|
33 |
+
"input": "Type of Financial Statement and its content",
|
34 |
+
"output": "Generated insights, analysis, or advice"
|
35 |
+
}
|