Bradford Levy commited on
Commit
fac4c78
·
verified ·
1 Parent(s): 0c9dcca

Upload ./README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +46 -3
README.md CHANGED
@@ -1,3 +1,46 @@
1
- ---
2
- license: odc-by
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: default
4
+ data_files:
5
+ - split: train
6
+ path:
7
+ - "train/bc-*.jsonl.gz"
8
+ - split: validation
9
+ path:
10
+ - "validation/bc-*.jsonl.gz"
11
+ - config_name: clean
12
+ data_files:
13
+ - split: train
14
+ path:
15
+ - "sample/train/bc*.jsonl.gz"
16
+ - "deduped/bc*.jsonl.gz"
17
+ - split: validation
18
+ path:
19
+ - "validation/bc*.jsonl.gz"
20
+ - config_name: sample
21
+ data_files:
22
+ - split: train
23
+ path:
24
+ - "sample/train/bc*.jsonl.gz"
25
+ - split: validation
26
+ path:
27
+ - "sample/validation/bc*.jsonl.gz"
28
+ ---
29
+
30
+ # BeanCounter
31
+
32
+ ## Datset Summary
33
+
34
+ BeanCounter is a dataset of business-oriented text. The data is sourced from the Electronic Data Gathering and Retrieval (EDGAR) system operated by the United States Securities and Exchange Commission (SEC). Specifically all filings submitted to EDGAR from 1996 through 2023 (validation splits are based on a random sample of data from January and February of 2024). We include three configurations of the dataset: `clean`, `default`, and `sample`. These consist of:
35
+
36
+ - `clean`: 159B tokens of cleaned text
37
+ - `default`: 111B tokens of cleaned and deduplicated text
38
+ - `sample`: 1.1B tokens randomly sampled from `default` stratified by year
39
+
40
+ ## How can I use this?
41
+
42
+ You are free to use it however you wish so long as you cite the work that resulted in the dataset:
43
+
44
+ ```
45
+ ToDo
46
+ ```