Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,111 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-nc-nd-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-nd-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text2text-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- sfia
|
| 9 |
+
- skills-framework
|
| 10 |
+
- taxonomy
|
| 11 |
+
- rag
|
| 12 |
+
- professional-skills
|
| 13 |
+
- json
|
| 14 |
+
pretty_name: SFIA 9 Framework Dataset
|
| 15 |
+
size_categories:
|
| 16 |
+
- n<1K
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# SFIA-9-Scraped Dataset
|
| 20 |
+
|
| 21 |
+
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.
|
| 22 |
+
|
| 23 |
+
---
|
| 24 |
+
|
| 25 |
+
## π Dataset Overview
|
| 26 |
+
|
| 27 |
+
* **Name:** SFIA-9-Scraped
|
| 28 |
+
* **Hugging Face:** [Programmer-RD-AI/sfia-9-scraped](https://huggingface.co/datasets/Programmer-RD-AI/sfia-9-scraped)
|
| 29 |
+
* **DOI:** 10.57967/hf/5746
|
| 30 |
+
* **Author:** Ranuga Disansa Gamage
|
| 31 |
+
* **Revision:** 89feeb8
|
| 32 |
+
* **Publisher:** Hugging Face
|
| 33 |
+
* **Year:** 2025
|
| 34 |
+
|
| 35 |
+
Use this dataset to build RAG systems, taxonomy-driven search, skill-gap analytics, and other AI/ML applications focused on professional skill frameworks.
|
| 36 |
+
|
| 37 |
+
---
|
| 38 |
+
|
| 39 |
+
## π Data Structure
|
| 40 |
+
|
| 41 |
+
The dataset is provided as a single JSON file (`sfia_9_data.json`) with the following top-level structure:
|
| 42 |
+
|
| 43 |
+
```json
|
| 44 |
+
{
|
| 45 |
+
"url": [ "...", "...", ... ],
|
| 46 |
+
"raw_content": [ "...", "...", ... ],
|
| 47 |
+
"images": [ "...", "...", ... ]
|
| 48 |
+
}
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
* **url**: `array[string]` β list of page URLs for each scraped entry.
|
| 52 |
+
* **raw\_content**: `array[string]` β the extracted textual content from each URL.
|
| 53 |
+
* **images**: `array[string]` β list of image URLs associated with each entry.
|
| 54 |
+
|
| 55 |
+
---
|
| 56 |
+
|
| 57 |
+
## βοΈ Usage
|
| 58 |
+
|
| 59 |
+
Install the π€ Datasets library:
|
| 60 |
+
|
| 61 |
+
```bash
|
| 62 |
+
pip install datasets
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
Load the dataset:
|
| 66 |
+
|
| 67 |
+
```python
|
| 68 |
+
from datasets import load_dataset
|
| 69 |
+
|
| 70 |
+
ds = load_dataset("Programmer-RD-AI/sfia-9-scraped")
|
| 71 |
+
print(ds["train"][0])
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
For RAG applications, integrate this dataset as your taxonomy source before chunking and embedding.
|
| 75 |
+
|
| 76 |
+
---
|
| 77 |
+
|
| 78 |
+
## π Citation
|
| 79 |
+
|
| 80 |
+
If you use this dataset in your research, please cite:
|
| 81 |
+
|
| 82 |
+
```bibtex
|
| 83 |
+
@misc{ranuga_disansa_gamage_2025,
|
| 84 |
+
author = {Ranuga Disansa Gamage},
|
| 85 |
+
title = {sfia-9-scraped (Revision 89feeb8)},
|
| 86 |
+
year = {2025},
|
| 87 |
+
url = {https://huggingface.co/datasets/Programmer-RD-AI/sfia-9-scraped},
|
| 88 |
+
doi = {10.57967/hf/5746},
|
| 89 |
+
publisher = {Hugging Face}
|
| 90 |
+
}
|
| 91 |
+
```
|
| 92 |
+
|
| 93 |
+
---
|
| 94 |
+
|
| 95 |
+
## π License
|
| 96 |
+
|
| 97 |
+
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.
|
| 98 |
+
|
| 99 |
+
[View license details](https://creativecommons.org/licenses/by-nc/4.0/)
|
| 100 |
+
|
| 101 |
+
---
|
| 102 |
+
|
| 103 |
+
## π€ Acknowledgements
|
| 104 |
+
|
| 105 |
+
* **SFIA Foundation**: Original SFIA-9 framework content.
|
| 106 |
+
|
| 107 |
+
---
|
| 108 |
+
|
| 109 |
+
## βοΈ Contact
|
| 110 |
+
|
| 111 |
+
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).
|