Downloads · 30 days
0
aigovdev/governance-risk-classifier
governance-risk-classifier is a tabular classification model from aigovdev. Use it for the tabular classification task on the model card, and read the license before you ship it in a product. It is set up for scikit-learn. The card lists the license as apache-2.0.
A small experimental baseline for classifying synthetic AI governance scenarios into coarse engineering risk tiers.
Downloads · 30 days
0
Access
Public
Updated Aug 16, 2026
Repo size
5.1 KB
Likes
0
Public
Click a slice to open those files.
.py7.5 KB · 38%
From the Hugging Face model README
A small experimental baseline for classifying synthetic AI governance scenarios into coarse engineering risk tiers.
The model is part of the AIGovDev public AI governance engineering portfolio.
The pipeline uses:
Input features:
The original governance labels are mapped into three coarse tiers:
low and limited → lowerhigh → highunacceptable → unacceptableThese labels are engineering annotations only.
They are not legal classifications and must not be interpreted as determining compliance with the EU AI Act or any other regulation.
The model is trained on:
aigovdev/ai-governance-scenarios
The current dataset contains 12 synthetic scenarios:
lowerhighunacceptableThe scenarios were manually constructed for experimentation and demonstration.
They are not production data.
The current prototype uses stratified 3-fold cross-validation.
Results:
| Metric | Score |
|---|---|
| Accuracy | 1.000 |
| Macro precision | 1.000 |
| Macro recall | 1.000 |
| Macro F1 | 1.000 |
Confusion matrix:
lower 6 0 0
high 0 3 0
unacceptable 0 0 3
These results must be interpreted with extreme caution.
The dataset contains only 12 synthetic, manually constructed examples. The perfect cross-validation result is therefore primarily evidence that the current feature patterns are easily separable within this toy dataset.
It is not evidence of real-world generalization, production readiness, regulatory validity, or calibrated governance-risk estimation.
This model is suitable for:
The model must not be used as:
The repository contains:
src/train.pyrequirements.txtmodel.joblibmetrics.jsonThe training script downloads the public dataset directly from Hugging Face and reproduces the model pipeline and evaluation.
Major limitations include:
Possible extensions include:
AIGov builds infrastructure for transparent, auditable, and accountable AI systems.
Website: https://govbase.dev
Apache-2.0
The repository includes inference.py for local predictions.
Example:
python inference.py --json '{
"sector": "financial_services",
"impact": "high",
"decision_autonomy": "automated",
"human_oversight": "none",
"monitoring": "none",
"traceability": "none",
"technical_documentation": "partial"
}'
Example output:
{
"risk_tier": "unacceptable",
"class_probabilities": {
"high": 0.24612,
"lower": 0.08766,
"unacceptable": 0.66622
}
}
The returned class probabilities are model scores from the logistic-regression baseline. They should not be interpreted as calibrated probabilities of legal or real-world governance risk.