Datasets:

ArXiv:
hzope commited on
Commit
24e8869
·
verified ·
1 Parent(s): d654478

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
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