Michael Ramos commited on
Commit
9e2c549
1 Parent(s): 335ed8a

fix format error

Browse files
frameworks/dasf/framework.json CHANGED
The diff for this file is too large to render. See raw diff
 
frameworks/sample/framework.json CHANGED
@@ -1,130 +1,128 @@
1
  {
2
- "framework": {
3
- "name": "AI Bias Assessment and Mitigation Framework",
4
- "description": "A framework for assessing and mitigating bias in AI systems throughout the development lifecycle.",
5
- "stages": [
6
- {
7
- "stageName": "Data Collection and Preprocessing",
8
- "systemComponents": [
9
- {
10
- "componentName": "Data Source Selection",
11
- "risks": [
12
- {
13
- "riskId": "1.1",
14
- "title": "Biased Data Sources",
15
- "definition": "The selected data sources may contain inherent biases or lack diversity, leading to biased AI models.",
16
- "addressedByControls": ["AIDBA-2"]
17
- }
18
- ]
19
- },
20
- {
21
- "componentName": "Data Preprocessing",
22
- "risks": [
23
- {
24
- "riskId": "1.2",
25
- "title": "Preprocessing-Induced Bias",
26
- "definition": "Data preprocessing techniques, such as feature selection or data cleaning, may introduce or amplify biases in the data.",
27
- "addressedByControls": ["AIDBA-2"]
28
- }
29
- ]
30
- },
31
- {
32
- "componentName": "Data Bias Assessment",
33
- "risks": [
34
- {
35
- "riskId": "1.3",
36
- "title": "Inadequate Bias Assessment",
37
- "definition": "Failure to conduct comprehensive assessments to identify potential biases in the training data may result in biased AI models.",
38
- "addressedByControls": ["AIDBA-1"]
39
- }
40
- ]
41
- }
42
- ]
43
- },
44
- {
45
- "stageName": "Model Development and Training",
46
- "systemComponents": [
47
- {
48
- "componentName": "Algorithm Selection",
49
- "risks": [
50
- {
51
- "riskId": "2.1",
52
- "title": "Algorithmic Bias",
53
- "definition": "The chosen algorithms may have inherent biases or may amplify biases present in the training data.",
54
- "addressedByControls": ["AIDBA-3"]
55
- }
56
- ]
57
- },
58
- {
59
- "componentName": "Model Training",
60
- "risks": [
61
- {
62
- "riskId": "2.2",
63
- "title": "Training Data Bias",
64
- "definition": "The training data used to develop the AI model may contain biases, leading to biased model outputs.",
65
- "addressedByControls": ["AIDBA-3"]
66
- }
67
- ]
68
- }
69
- ]
70
- },
71
- {
72
- "stageName": "Model Evaluation and Testing",
73
- "systemComponents": [
74
- {
75
- "componentName": "Performance Evaluation",
76
- "risks": [
77
- {
78
- "riskId": "3.1",
79
- "title": "Inadequate Performance Metrics",
80
- "definition": "The selected performance metrics may not adequately capture the fairness and bias aspects of the AI model.",
81
- "addressedByControls": ["AIDBA-4"]
82
- }
83
- ]
84
- },
85
- {
86
- "componentName": "Bias Testing",
87
- "risks": [
88
- {
89
- "riskId": "3.2",
90
- "title": "Undetected Residual Bias",
91
- "definition": "The testing process may fail to identify and quantify residual biases present in the trained AI model.",
92
- "addressedByControls": ["AIDBA-4"]
93
- }
94
- ]
95
- }
96
- ]
97
- },
98
- {
99
- "stageName": "Deployment and Monitoring",
100
- "systemComponents": [
101
- {
102
- "componentName": "Model Deployment",
103
- "risks": [
104
- {
105
- "riskId": "4.1",
106
- "title": "Fairness Drift",
107
- "definition": "The fairness properties of the AI model may degrade over time due to changes in the underlying data or environment.",
108
- "addressedByControls": ["AIDBA-5"]
109
- }
110
- ]
111
- },
112
- {
113
- "componentName": "Monitoring and Feedback",
114
- "risks": [
115
- {
116
- "riskId": "4.2",
117
- "title": "Insufficient Monitoring",
118
- "definition": "The monitoring processes may not effectively detect emerging biases or fairness issues in the deployed AI system.",
119
- "addressedByControls": ["AIDBA-5"]
120
- }
121
- ]
122
- }
123
- ]
124
- }
125
- ]
126
- },
127
- "controlList": [
128
  {
129
  "controlId": "AIDBA-1",
130
  "title": "Data Bias Assessment and Mitigation",
 
1
  {
2
+ "name": "AI Bias Assessment and Mitigation Framework",
3
+ "description": "A framework for assessing and mitigating bias in AI systems throughout the development lifecycle.",
4
+ "stages": [
5
+ {
6
+ "stageName": "Data Collection and Preprocessing",
7
+ "systemComponents": [
8
+ {
9
+ "componentName": "Data Source Selection",
10
+ "risks": [
11
+ {
12
+ "riskId": "1.1",
13
+ "title": "Biased Data Sources",
14
+ "definition": "The selected data sources may contain inherent biases or lack diversity, leading to biased AI models.",
15
+ "addressedByControls": ["AIDBA-2"]
16
+ }
17
+ ]
18
+ },
19
+ {
20
+ "componentName": "Data Preprocessing",
21
+ "risks": [
22
+ {
23
+ "riskId": "1.2",
24
+ "title": "Preprocessing-Induced Bias",
25
+ "definition": "Data preprocessing techniques, such as feature selection or data cleaning, may introduce or amplify biases in the data.",
26
+ "addressedByControls": ["AIDBA-2"]
27
+ }
28
+ ]
29
+ },
30
+ {
31
+ "componentName": "Data Bias Assessment",
32
+ "risks": [
33
+ {
34
+ "riskId": "1.3",
35
+ "title": "Inadequate Bias Assessment",
36
+ "definition": "Failure to conduct comprehensive assessments to identify potential biases in the training data may result in biased AI models.",
37
+ "addressedByControls": ["AIDBA-1"]
38
+ }
39
+ ]
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "stageName": "Model Development and Training",
45
+ "systemComponents": [
46
+ {
47
+ "componentName": "Algorithm Selection",
48
+ "risks": [
49
+ {
50
+ "riskId": "2.1",
51
+ "title": "Algorithmic Bias",
52
+ "definition": "The chosen algorithms may have inherent biases or may amplify biases present in the training data.",
53
+ "addressedByControls": ["AIDBA-3"]
54
+ }
55
+ ]
56
+ },
57
+ {
58
+ "componentName": "Model Training",
59
+ "risks": [
60
+ {
61
+ "riskId": "2.2",
62
+ "title": "Training Data Bias",
63
+ "definition": "The training data used to develop the AI model may contain biases, leading to biased model outputs.",
64
+ "addressedByControls": ["AIDBA-3"]
65
+ }
66
+ ]
67
+ }
68
+ ]
69
+ },
70
+ {
71
+ "stageName": "Model Evaluation and Testing",
72
+ "systemComponents": [
73
+ {
74
+ "componentName": "Performance Evaluation",
75
+ "risks": [
76
+ {
77
+ "riskId": "3.1",
78
+ "title": "Inadequate Performance Metrics",
79
+ "definition": "The selected performance metrics may not adequately capture the fairness and bias aspects of the AI model.",
80
+ "addressedByControls": ["AIDBA-4"]
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "componentName": "Bias Testing",
86
+ "risks": [
87
+ {
88
+ "riskId": "3.2",
89
+ "title": "Undetected Residual Bias",
90
+ "definition": "The testing process may fail to identify and quantify residual biases present in the trained AI model.",
91
+ "addressedByControls": ["AIDBA-4"]
92
+ }
93
+ ]
94
+ }
95
+ ]
96
+ },
97
+ {
98
+ "stageName": "Deployment and Monitoring",
99
+ "systemComponents": [
100
+ {
101
+ "componentName": "Model Deployment",
102
+ "risks": [
103
+ {
104
+ "riskId": "4.1",
105
+ "title": "Fairness Drift",
106
+ "definition": "The fairness properties of the AI model may degrade over time due to changes in the underlying data or environment.",
107
+ "addressedByControls": ["AIDBA-5"]
108
+ }
109
+ ]
110
+ },
111
+ {
112
+ "componentName": "Monitoring and Feedback",
113
+ "risks": [
114
+ {
115
+ "riskId": "4.2",
116
+ "title": "Insufficient Monitoring",
117
+ "definition": "The monitoring processes may not effectively detect emerging biases or fairness issues in the deployed AI system.",
118
+ "addressedByControls": ["AIDBA-5"]
119
+ }
120
+ ]
121
+ }
122
+ ]
123
+ }
124
+ ],
125
+ "controls": [
 
 
126
  {
127
  "controlId": "AIDBA-1",
128
  "title": "Data Bias Assessment and Mitigation",