Chaitanya14 commited on
Commit
884c725
·
verified ·
1 Parent(s): fc92a72

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -3
README.md CHANGED
@@ -1,8 +1,22 @@
1
  This dataset contains 50,000 samples of user financial queries paired with their corresponding structured data requests (context). It was created to facilitate the fine-tuning of Large Language Model (LLM)-based Financial Agents for accurate data extraction and query answering.
2
 
3
- ## Dataset Construction
4
 
5
- # Diverse Query Sources
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  The dataset was built using a multi-method query sampling approach, incorporating:
7
 
8
  - Real-world queries from retail customer technology channels (e.g., email, web forms).
@@ -11,7 +25,7 @@ The dataset was built using a multi-method query sampling approach, incorporatin
11
 
12
  - Interviews with 20 retail investors about their pre-investment questions.
13
 
14
- # Template-Based Expansion:
15
  5,000 query templates were generated (4,000 from technology channels, 500 from advisors, and 500 from investors). These templates were then scaled up to 50,000 samples by randomly varying elements within each template, ensuring a broad and varied representation of financial queries.
16
 
17
  This dataset provides a valuable resource for developing and evaluating LLMs in the financial domain, particularly for applications requiring accurate understanding and response to user financial queries.
 
1
  This dataset contains 50,000 samples of user financial queries paired with their corresponding structured data requests (context). It was created to facilitate the fine-tuning of Large Language Model (LLM)-based Financial Agents for accurate data extraction and query answering.
2
 
3
+ # How to load the Dataset
4
 
5
+ You can load the dataset using the code below
6
+
7
+ ```python
8
+
9
+ from datasets import load_dataset
10
+
11
+ ds = load_dataset("Chaitanya14/Financial_Context_Dataset")
12
+
13
+
14
+ ```
15
+
16
+
17
+ # Dataset Construction
18
+
19
+ ## Diverse Query Sources
20
  The dataset was built using a multi-method query sampling approach, incorporating:
21
 
22
  - Real-world queries from retail customer technology channels (e.g., email, web forms).
 
25
 
26
  - Interviews with 20 retail investors about their pre-investment questions.
27
 
28
+ ## Template-Based Expansion:
29
  5,000 query templates were generated (4,000 from technology channels, 500 from advisors, and 500 from investors). These templates were then scaled up to 50,000 samples by randomly varying elements within each template, ensuring a broad and varied representation of financial queries.
30
 
31
  This dataset provides a valuable resource for developing and evaluating LLMs in the financial domain, particularly for applications requiring accurate understanding and response to user financial queries.