Mayfull commited on
Commit
21af414
·
verified ·
1 Parent(s): b047d61

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -0
README.md CHANGED
@@ -85,4 +85,18 @@ Here’s an expanded description including explanations for each line:
85
  ``` python
86
  from datasets import load_dataset
87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  ```
 
85
  ``` python
86
  from datasets import load_dataset
87
 
88
+ # Loading a specific subset (i.e. FinDER) and a split (corpus, queries)
89
+ dataset = load_dataset("Linq-AI-Research/FinanceRAG", "FinDER", split="corpus")
90
+
91
+ for example in dataset:
92
+ print(example)
93
+ break
94
+ ```
95
+
96
+ ```
97
+ {
98
+ '_id' : 'ADBE20230004',
99
+ 'title': 'ADBE OVERVIEW',
100
+ 'text': 'Adobe is a global technology company with a mission to change the world through personalized digital experiences. For over four decades, Adobe’s innovations have transformed how individuals, teams, businesses, enterprises, institutions, and governments engage and interact across all types of media. Our products, services and solutions are used around the world to imagine, create, manage, deliver, measure, optimize and engage with content across surfaces and fuel digital experiences. We have a diverse user base that includes consumers, communicators, creative professionals, developers, students, small and medium businesses and enterprises. We are also empowering creators by putting the power of artificial intelligence (“AI”) in their hands, and doing so in ways we believe are responsible. Our products and services help unleash creativity, accelerate document productivity and power businesses in a digital world.'
101
+ }
102
  ```