File size: 2,174 Bytes
555cf28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5a7564
555cf28
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
license: apache-2.0
task_categories:
- text-generation
language:
- en
tags:
- synthetic
- resumes
- career-data
size_categories:
- 1K<n<10K
---

# sampled-local-resumes

This dataset contains synthetic resume data sampled from local folders (20% sample from each folder).

## License

This dataset is released under the Apache License 2.0. Please see the `LICENSE` and `NOTICE` files for details.

## Attribution

Copyright 2025 Fairly AI Inc. dba Asenion

This dataset includes data released by Fairly AI Inc. dba Asenion under the Apache License, Version 2.0.

You may obtain a copy of the License at:
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, data distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.

## Dataset Structure

The dataset is organized under a `synthetic_resumes/` parent folder with resume type/category subfolders:

```
synthetic_resumes/
β”œβ”€β”€ mediocre_*/ folders: Mediocre quality resumes for various professions
β”œβ”€β”€ synthetic_bad_*/ folders: Lower quality synthetic resumes
└── synthetic_*/ folders: Standard synthetic resumes for various professions
```

Example structure:
```
synthetic_resumes/
β”œβ”€β”€ mediocre_warehouse_resumes/
β”‚   β”œβ”€β”€ resume_001.md
β”‚   └── resume_045.md
β”œβ”€β”€ synthetic_bad_senior_software_developer_resumes/
β”‚   β”œβ”€β”€ resume_003.md
β”‚   └── resume_067.md
└── synthetic_teacher_resumes/
    β”œβ”€β”€ resume_012.md
    └── resume_089.md
```

## Usage

```python
from datasets import load_dataset

# Load the dataset
dataset = load_dataset("your-username/sampled-local-resumes")

# Access a resume
resume = dataset['train'][0]
print(resume['text'])
```

## Citation

If you use this dataset, please cite:

```
@dataset{synthetic_resumes_local,
  title={Synthetic Resume Dataset (Local Sample)},
  author={Fairly AI Inc. dba Asenion},
  year={2025},
  url={https://huggingface.co/datasets/sampled-local-resumes}
}
```