File size: 2,690 Bytes
6641548 |
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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
---
license: cc-by-nc-nd-4.0
task_categories:
- text2text-generation
language:
- en
tags:
- sfia
- skills-framework
- taxonomy
- rag
- professional-skills
- json
pretty_name: SFIA 9 Framework Dataset
size_categories:
- n<1K
---
# SFIA-9-Scraped Dataset
This repository contains the **SFIA-9-Scraped** dataset, a JSON collection of the Skills Framework for the Information Age (SFIA) version 9 categories and levels, scraped for non-commercial research use.
---
## π Dataset Overview
* **Name:** SFIA-9-Scraped
* **Hugging Face:** [Programmer-RD-AI/sfia-9-scraped](https://huggingface.co/datasets/Programmer-RD-AI/sfia-9-scraped)
* **DOI:** 10.57967/hf/5746
* **Author:** Ranuga Disansa Gamage
* **Revision:** 89feeb8
* **Publisher:** Hugging Face
* **Year:** 2025
Use this dataset to build RAG systems, taxonomy-driven search, skill-gap analytics, and other AI/ML applications focused on professional skill frameworks.
---
## π Data Structure
The dataset is provided as a single JSON file (`sfia_9_data.json`) with the following top-level structure:
```json
{
"url": [ "...", "...", ... ],
"raw_content": [ "...", "...", ... ],
"images": [ "...", "...", ... ]
}
```
* **url**: `array[string]` β list of page URLs for each scraped entry.
* **raw\_content**: `array[string]` β the extracted textual content from each URL.
* **images**: `array[string]` β list of image URLs associated with each entry.
---
## βοΈ Usage
Install the π€ Datasets library:
```bash
pip install datasets
```
Load the dataset:
```python
from datasets import load_dataset
ds = load_dataset("Programmer-RD-AI/sfia-9-scraped")
print(ds["train"][0])
```
For RAG applications, integrate this dataset as your taxonomy source before chunking and embedding.
---
## π Citation
If you use this dataset in your research, please cite:
```bibtex
@misc{ranuga_disansa_gamage_2025,
author = {Ranuga Disansa Gamage},
title = {sfia-9-scraped (Revision 89feeb8)},
year = {2025},
url = {https://huggingface.co/datasets/Programmer-RD-AI/sfia-9-scraped},
doi = {10.57967/hf/5746},
publisher = {Hugging Face}
}
```
---
## π License
This dataset is released under the **Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)** license. Use for **non-commercial research** only.
[View license details](https://creativecommons.org/licenses/by-nc/4.0/)
---
## π€ Acknowledgements
* **SFIA Foundation**: Original SFIA-9 framework content.
---
## βοΈ Contact
For questions or contributions, open an issue or pull request on the [Hugging Face dataset page](https://huggingface.co/datasets/Programmer-RD-AI/sfia-9-scraped). |