-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodel_policy.oscal.yaml
More file actions
39 lines (39 loc) · 1.23 KB
/
model_policy.oscal.yaml
File metadata and controls
39 lines (39 loc) · 1.23 KB
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
assessment-plan:
metadata:
title: "Article 15: Model Accuracy and Fairness"
version: "1.0"
control-implementations:
- description: "Model Performance and Fairness Controls"
implemented-requirements:
- control-id: model-accuracy
description: "Model accuracy >= 70%"
props:
- name: metric_key
value: accuracy_score
- name: operator
value: ">="
- name: threshold
value: "0.70"
- name: severity
value: high
- name: "input:target"
value: target
- name: "input:prediction"
value: prediction
- control-id: model-gender-fairness
description: "Demographic parity difference < 0.10"
props:
- name: metric_key
value: demographic_parity_diff
- name: operator
value: "<"
- name: threshold
value: "0.10"
- name: severity
value: high
- name: "input:target"
value: target
- name: "input:prediction"
value: prediction
- name: "input:dimension"
value: gender