alwaysgood commited on
Commit
ee9abb6
·
verified ·
1 Parent(s): 493a84c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: SEC 10-K Translation Tracks (Max)
3
+ language:
4
+ - en
5
+ license: other
6
+ task_categories:
7
+ - text2text-generation
8
+ tags:
9
+ - finance
10
+ - sec
11
+ - translation
12
+ ---
13
+
14
+ # SEC 10-K Translation Tracks (Max)
15
+
16
+ This dataset contains filtered English source text from SEC 10-K filings, prepared as translation-oriented tracks with three granularities.
17
+
18
+ ## Splits / Files
19
+
20
+ - `sentence_track.jsonl`: 1,620,583 rows
21
+ - `chunk_track.jsonl`: 914,217 rows
22
+ - `paragraph_track.jsonl`: 5,367,690 rows
23
+ - `translation_dataset.jsonl`: 7,902,490 rows (concatenated)
24
+
25
+ ## Columns
26
+
27
+ Shared columns: `document_id`, `filing_id`, `filename`, `report_year`, `fiscal_year`, `cik`, `company_name`, `fiscal_year_end`, `form_type`, `section`, `section_title`, `section_id`, `paragraph_id`, `paragraph_index`, `text`, `word_count`, `is_boundary`, `boundary_reason`, `candidate_id`, `granularity`, `source_paragraph_id`.
28
+
29
+ Track-specific columns:
30
+ - sentence: `sentence_index_in_paragraph`
31
+ - chunk: `sentence_start_in_paragraph`, `sentence_end_in_paragraph`, `chunk_sentence_count`
32
+ - paragraph: no extra columns
33
+
34
+ ## Recommended Loading
35
+
36
+ ```python
37
+ from datasets import load_dataset
38
+
39
+ ds = load_dataset(
40
+ "json",
41
+ data_files={
42
+ "sentence": "sentence_track.jsonl",
43
+ "chunk": "chunk_track.jsonl",
44
+ "paragraph": "paragraph_track.jsonl",
45
+ },
46
+ )
47
+ print(ds)
48
+ ```
49
+
50
+ ## Notes
51
+
52
+ - The source is SEC 10-K text; users are responsible for downstream compliance checks.
53
+ - `translation_dataset.jsonl` duplicates rows already present in the three track files. For Hub release, uploading only track files is usually enough.