sifa-classification-agentic-rag
Collection
3 items • Updated • 2
chunks stringlengths 26 128k |
|---|
* you can move to sfia 9 when you are ready - sfia 8 skill descriptions will still be available to use. * previous sfia assessments or skills mapping are not impacted by this change. [click to learn why sfia skills are not defined at all 7 levels.](https://sfia-online.org/en/about-sfia/why-sfia-skills-are-not-defined-a... |
| new skill | | | [asset management](https://sfia-online.org/en/sfia-9/skills/asset-management "skill") | asmg | managing the full lifecycle of assets from acquisition, operation, maintenance to disposal. | new skill, split | | | [incident management](https://sfia-online.org/en/sfia-9/skills/incident-management "skill"... |
| small change | | | [quality assurance](https://sfia-online.org/en/sfia-9/skills/quality-assurance "skill") | quas | assuring, through ongoing and periodic assessments and reviews, that the organisation’s quality objectives are being met. | small change | | | [service acceptance](https://sfia-online.org/en/sfia-9/skil... |
| auto | | | [influence](https://sfia-online.org/en/sfia-9/responsibilities/generic-attributes-business-skills-behaviours/influence "generic_attribute") | the reach and impact of your decisions and actions, both within and outside the organisation. | comp | | | [knowledge](https://sfia-online.org/en/sfia-9/responsibili... |
exercises considerable personal responsibility and autonomy. exercises considerable personal responsibility and autonomy. is fully accountable for actions taken and decisions made, both by self and others to whom responsibilities have been assigned |
leads collaboration with a diverse range of stakeholders across competing objectives within the organisation.builds strong, influential connections with key internal and external contacts at senior management/technical leader level anticipates and leads in addressing problems and opportunities that may impact organisat... |
people and skills — english =============== * [log in / register](https://sfia-online.org/en/login "log in / register") * [newsletter](https://sfia-online.org/@@signup "newsletter") english * [english](https://sfia-online.org/@@multilingual-selector/493be471e1714f319c1188a9c21aa596/en) * [français (canada)](https://sfi... |
initiates and influences strategic objectives and assigns responsibilities. ##### planning * initiates and influences strategic objectives and assigns responsibilities. delegates authority and responsibility for strategic business objectives. manages inter-relationships between impacted parties and strategic imperative... |
stakeholder management — english =============== * [log in / register](https://sfia-online.org/en/login "log in / register") * [newsletter](https://sfia-online.org/@@signup "newsletter") english * [english](https://sfia-online.org/@@multilingual-selector/b8c560b267b347c782442534eaf2cbfd/en) * [deutsch](https://sfia-onl... |
data and analytics data and analytics https://sfia-online.org/en/sfia-9/sfia-views/full-framework-view/development-and-implementation/data-solutions https://sfia-online.org/@@site-logo/sfialogo-outlines.svg #### sfia view:data and analytics data and analytics ================== none [data management](https://sfia-onlin... |
these views address the interests of specific professional disciplines, industry topics and framework users.https://sfia-online.org/en/sfia-9/sfia-views https://sfia-online.org/@@site-logo/sfialogo-outlines.svg sfia 9 views ============ sfia views present the contents of sfia from different viewpoints. sfia 9 documents... |
* * * supports option identification and feasibility assessment. identifies the range of possible options. undertakes short-listing of options and feasibility assessment |
security services security services https://sfia-online.org/en/sfia-9/sfia-views/full-framework-view/delivery-and-operation/security-operations https://sfia-online.org/@@site-logo/sfialogo-outlines.svg #### sfia view:security services security services ================= none [identity and access management](https://sfi... |
sfia 9 software engineering competencies sfia 9 software engineering competencies we have designed sfia to be flexible. sfia users have developed this view of sfia to provide a quick start identification of the sfia skills which are most relevant to software engineering competencies.https://sfia-online.org/en/sfia-9/sf... |
[delivery and operation](https://sfia-online.org/en/sfia-9/sfia-views/full-framework-view/delivery-and-operation) 6. delivery and operation delivery and operation https://sfia-online.org/en/sfia-9/sfia-views/full-framework-view/delivery-and-operation https://sfia-online.org/@@site-logo/sfialogo-outlines.svg #### sfia v... |
you can develop your knowledge and support others who do have responsibility in this area by: * learning key concepts and principles related to this skill and its impact on your role * performing related skills (see the related sfia skills) * supporting others who are performing higher level tasks and activities ##### ... |
feasibility assessment typically results in a documented business case used to support organisational decision-making about proposed investments. engages with internal and external stakeholders to get the information required for feasibility assessment. collaborates with stakeholders and specialists to get the informat... |
[autonomy](https://sfia-online.org/en/sfia-9/responsibilities/generic-attributes-business-skills-behaviours/autonomy "generic_attribute") ----------------------------------------------------------------------------------------------------------------------------------------- the level of independence, discretion and ac... |
[read more…](https://sfia-online.org/en/sfia-9/skills/cost-management) [demand management](https://sfia-online.org/en/sfia-9/skills/demand-management "skill") --------------------------------------------------------------------------------------- analysing and proactively managing business demand for new services or mo... |
* manages and mitigates organisational risk. * raises issues when objectives are at risk. * assesses and evaluates risk. * demonstrates an understanding of risk factors in their work |
The sfia-9-chunks dataset is a derived dataset from sfia-9-scraped. It uses sentence embeddings and hierarchical clustering to split each SFIA-9 document into coherent semantic chunks. This chunking facilitates more efficient downstream tasks like semantic search, question answering, and topic modeling.
We employ the following procedure to generate chunks:
from sentence_transformers import SentenceTransformer
from sklearn.cluster import AgglomerativeClustering
MODEL_NAME = "all-MiniLM-L12-v2"
def get_chunks(document: str) -> list[str]:
model = SentenceTransformer(MODEL_NAME)
sentences = document.split(". ")
embs = model.encode(sentences)
clustering = AgglomerativeClustering(n_clusters=None, distance_threshold=1.0).fit(
embs
)
chunks = []
for label in set(clustering.labels_):
group = [
sentences[i]
for i in range(len(sentences))
if clustering.labels_[i] == label
]
chunks.append(". ".join(group))
return chunks
all-MiniLM-L12-v2 for efficient sentence embeddings.1.0 to dynamically determine the number of semantic groups.This dataset consists of a flat list of semantic text chunks derived from the SFIA-9 documents. When loaded, each example is an object with a single field:
chunks (string): One coherent semantic chunk extracted via hierarchical clustering.from datasets import load_dataset
dataset = load_dataset("Programmer-RD-AI/sfia-9-chunks")
for example in dataset:
print(example["chunks"])
This dataset is released under the Creative Commons Attribution 4.0 International (CC BY 4.0) license. You can view the full license at: https://creativecommons.org/licenses/by/4.0/
If you use this dataset in your research, please cite:
@misc{ranuga_disansa_gamage_2025,
author = {Ranuga Disansa Gamage},
title = {sfia-9-chunks (Revision 035dc41)},
year = 2025,
url = {https://huggingface.co/datasets/Programmer-RD-AI/sfia-9-chunks},
doi = {10.57967/hf/5747},
publisher = {Hugging Face}
}