Update README.md
Browse files
README.md
CHANGED
|
@@ -13,5 +13,28 @@ WORKBank (AI Agent Worker Outlook and Readiness Knowledge Bank) is a database th
|
|
| 13 |
|
| 14 |
We share our dataset here. Our [github repository](https://github.com/shaoyijia/work-bank/tree/main) contains our dataset [Code Book](https://github.com/shaoyijia/work-bank/blob/readme-draft/data/codebook.pdf) and the code used for analysis and plotting of diagrams.
|
| 15 |
|
|
|
|
| 16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
|
|
|
| 13 |
|
| 14 |
We share our dataset here. Our [github repository](https://github.com/shaoyijia/work-bank/tree/main) contains our dataset [Code Book](https://github.com/shaoyijia/work-bank/blob/readme-draft/data/codebook.pdf) and the code used for analysis and plotting of diagrams.
|
| 15 |
|
| 16 |
+
To download a data file, use:
|
| 17 |
|
| 18 |
+
```
|
| 19 |
+
from datasets import load_dataset
|
| 20 |
+
|
| 21 |
+
dataset = load_dataset("SALT-NLP/WORKBank", data_files="worker_data/domain_worker_metadata.csv")
|
| 22 |
+
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
## Citation
|
| 26 |
+
|
| 27 |
+
Please cite our paper if you use this code or part of it in your work:
|
| 28 |
+
|
| 29 |
+
```
|
| 30 |
+
@misc{shao2025futureworkaiagents,
|
| 31 |
+
title={Future of Work with AI Agents: Auditing Automation and Augmentation Potential across the U.S. Workforce},
|
| 32 |
+
author={Yijia Shao and Humishka Zope and Yucheng Jiang and Jiaxin Pei and David Nguyen and Erik Brynjolfsson and Diyi Yang},
|
| 33 |
+
year={2025},
|
| 34 |
+
eprint={2506.06576},
|
| 35 |
+
archivePrefix={arXiv},
|
| 36 |
+
primaryClass={cs.CY},
|
| 37 |
+
url={https://arxiv.org/abs/2506.06576},
|
| 38 |
+
}
|
| 39 |
+
```
|
| 40 |
|