Update README.md
Browse files
README.md
CHANGED
@@ -27,3 +27,17 @@ configs:
|
|
27 |
- split: train
|
28 |
path: ui_qas/train-*
|
29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
- split: train
|
28 |
path: ui_qas/train-*
|
29 |
---
|
30 |
+
|
31 |
+
The `ui_survey` dataset is a collection of datasets derived from unemployment insurance state survey. Specifically, it is derived from the Department of Labor's (DoL) [Comparison of State Unemployment Insurance Laws](https://oui.doleta.gov/unemploy/pdf/uilawcompar/2023/complete.pdf) which they publish annually. (This dataset is based off of the 2023 survey.) The dataset was designed for the benchmarking of both LLMs' retrieval and statutory reasoning ability.
|
32 |
+
|
33 |
+
The first dataset is `ui_tables` which aims to store the information from the DoL's survey. `ui_tables` contains _82 rows_ following format:
|
34 |
+
|
35 |
+
```json
|
36 |
+
{
|
37 |
+
"test": 2
|
38 |
+
"other": [
|
39 |
+
"a",
|
40 |
+
"b"
|
41 |
+
]
|
42 |
+
}
|
43 |
+
```
|