williamTLmiller commited on
Commit
79c4b09
·
verified ·
1 Parent(s): 097feba

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +120 -0
README.md CHANGED
@@ -1,3 +1,123 @@
1
  ---
 
2
  license: cc-by-nc-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
1
  ---
2
+ ---
3
  license: cc-by-nc-4.0
4
+ language:
5
+ - en
6
+ pretty_name: BVA Structured Decisions (2019–2025)
7
+ task_categories:
8
+ - text-classification
9
+ - token-classification
10
+ - text-retrieval
11
+ - question-answering
12
+ tags:
13
+ - legal
14
+ - law
15
+ - legal-nlp
16
+ - veterans-affairs
17
+ - disability
18
+ - bva
19
+ - structured-extraction
20
+ - administrative-law
21
+ size_categories:
22
+ - 1K<n<10K
23
+ ---
24
+
25
+ # BVA Structured Decisions (2019–2025)
26
+
27
+ **Structured, issue-level records extracted from U.S. Board of Veterans' Appeals (BVA) decisions** — each decision parsed into its issues, conditions, outcomes, citations, and reasoning, with per-document provenance and completeness flags. Built for training and evaluating legal-AI models on veterans' disability adjudication.
28
+
29
+ This is a **2,905-decision sample**, balanced across **seven years (2019–2025, ~415 decisions/year)**, so it's representative of the full corpus rather than skewed to one year. A larger full-corpus release and a commercial license are available (see **Access & licensing** below).
30
+
31
+ > **Honesty note (please read).** Labels are **silver** (engine-produced, benchmarked against an LLM-labeled reference at ~96% outcome accuracy), **not** human-certified gold. Provenance and completeness ship with every row so you can verify and filter. See **Quality & accuracy**.
32
+
33
+ ---
34
+
35
+ ## What's in it
36
+
37
+ | | |
38
+ |---|---|
39
+ | **Decisions** | 2,905 |
40
+ | **Years** | 2019–2025 (~415 per year, balanced) |
41
+ | **Format** | CSV (one row per decision) — 23 columns |
42
+ | **Coverage** | 99% of rows carry extracted issues and citations; 96% carry reasoning atoms |
43
+ | **Source** | Public BVA decisions published on va.gov |
44
+
45
+ ### Outcome distribution (decision-level)
46
+ `remanded` 1,539 · `denied` 1,103 · `granted` 973 · `dismissed` 253 · `reopened` 68 · `withdrawn` 3
47
+
48
+ ### Reasoning completeness
49
+ `full` 2,156 (74%) · `partial` 491 (17%) · `none` 258 (9%) — of the `none` rows, 108 are flagged `reasoning_unfillable` (the source letter genuinely contains no reasoning, so emptiness is correct, not a miss).
50
+
51
+ ### Appeals regime
52
+ `legacy` 1,083 · `AMA` 60 · `unknown` 1,762 (tagged from the decision text, not the year).
53
+
54
+ ### Conditions
55
+ **107 distinct medical conditions.** Top: back disability (490), knee disability (438), hearing loss (341), arthritis (302), psychiatric disorder (289), PTSD (287), peripheral neuropathy (272), sleep apnea (212), hypertension (195), foot disability (177).
56
+
57
+ ---
58
+
59
+ ## Column dictionary
60
+
61
+ | Column | Description |
62
+ |---|---|
63
+ | `doc_id` | BVA citation/docket number (the 2-digit prefix is the fiscal year). |
64
+ | `source_url` | Link to the original decision on va.gov for independent verification. |
65
+ | `schema` | Extraction schema used (`bva`). |
66
+ | `issues` | The appealed issues (pipe-separated). |
67
+ | `conditions` / `conditions_raw` / `conditions_detailed` / `condition_other` | Canonical condition tokens, raw phrasing, laterality/qualifiers, and an out-of-vocabulary flag. |
68
+ | `outcomes` | Decision-level dispositions (granted / denied / remanded / dismissed / reopened / withdrawn). |
69
+ | `outcome_by_issue` | **Each issue tied to its own outcome** (the core training unit). |
70
+ | `reasoning_by_issue` | Per-issue reasoning atoms (the "why"). |
71
+ | `reasoning_completeness` | `full` / `partial` / `none` — quality tier for self-selecting a clean slice. |
72
+ | `reasoning_unfillable` | `True` when the source letter has no reasoning at all (so `none` is expected). |
73
+ | `regime` / `ama_docket` | Legacy vs. Appeals-Modernization-Act regime + AMA docket flag. |
74
+ | `citations` | Statutory/regulatory citations (38 U.S.C. / 38 C.F.R.), normalized and deduped. |
75
+ | `evidence` | Evidence types referenced (VA exam, private opinion, lay statement, etc.). |
76
+ | `reasoning_atoms` | Canonical reasoning findings (nexus established/not, benefit-of-doubt, duty-to-assist, etc.). |
77
+ | `judge_dates` | Decision date + Veterans Law Judge. |
78
+ | `signals_extracted` / `matrix_cells_used` / `avg_route_score` / `char_length` | Extraction telemetry + raw length. |
79
+
80
+ ---
81
+
82
+ ## Why it's useful
83
+
84
+ - **Issue-level supervision.** `outcome_by_issue` and `reasoning_by_issue` link each appealed issue to its disposition and rationale — not just a document-level label.
85
+ - **Trainable + filterable.** Completeness tiers let you train on the clean `full` slice or use everything; `regime` lets you separate legacy vs. AMA.
86
+ - **Verifiable.** Every row carries a `source_url` back to the public original.
87
+ - **Representative.** Balanced across 2019–2025, so temporal/longitudinal splits are honest.
88
+
89
+ **Intended uses:** training/evaluating models for claim-outcome prediction, issue and citation extraction, legal RAG over veterans' law, and fine-tuning assistants for BVA practice.
90
+
91
+ ---
92
+
93
+ ## Quality & accuracy (read before you rely on it)
94
+
95
+ - **Silver, not gold.** Records are produced by a deterministic extraction engine and benchmarked against an LLM-labeled reference at **~96% outcome-extraction accuracy** (measured on 2019 issues). **Human-verified gold validation is in progress** and not yet reflected here.
96
+ - **What's well-covered:** issues, conditions, outcomes, citations, and reasoning atoms (96–99% of rows populated).
97
+ - **Known limits:** the `none`/`partial` reasoning rows are recoverable gaps, not curated blanks; `regime` is `unknown` for many rows where the text doesn't clearly signal it; condition extraction follows a controlled vocabulary (107 tokens) with an `condition_other` flag for the long tail.
98
+
99
+ Treat the accuracy figure as a **silver benchmark**, and verify against `source_url` for any high-stakes use.
100
+
101
+ ---
102
+
103
+ ## Provenance, PII & ethics
104
+
105
+ - **Source:** BVA decisions are U.S. federal records, published publicly on va.gov. The underlying text is public domain (17 U.S.C. §105); the **structured layer** (this dataset's value-add) is what the license below covers.
106
+ - **PII:** BVA publishes decisions with appellants de-identified (referred to as "the Veteran"/initials). This release was screened with an automated PII gate (blocks SSN/phone/email/DOB/address). It may still contain incidental names (e.g., judges, place names) inherent to public legal text — review before any redistribution.
107
+ - **Not legal advice.** This is research/ML data about adjudication patterns, not guidance for any individual claim.
108
+
109
+ ---
110
+
111
+ ## Access & licensing
112
+
113
+ - **License: CC BY-NC 4.0** — free to use for **research and non-commercial** purposes, with attribution. The raw decision text is public domain; the **NC term applies to the structured annotations** in this dataset.
114
+ - **Commercial use / full corpus:** the full multi-year corpus (and a commercial license) are available separately. **Contact the maintainer** to license it for commercial use.
115
+
116
+ ### Attribution
117
+ > BVA Structured Decisions (2019–2025). Structured extraction of public Board of Veterans' Appeals decisions. Derived from va.gov public records; structured layer © the maintainer, released under CC BY-NC 4.0.
118
+
119
+ ---
120
+
121
+ ## Changelog
122
+ - **v1** — 2,905 decisions, balanced 2019–2025; 23-column document schema; silver labels (~96% benchmark).
123
  ---