billmarino commited on
Commit
6571e75
·
unverified ·
1 Parent(s): f72cb42

Upload initial CC artifact templates and CC algo

Browse files
Files changed (4) hide show
  1. compliance_analysis.py +139 -0
  2. data_cc.md +36 -0
  3. model_cc.md +78 -0
  4. project_cc.md +297 -0
compliance_analysis.py ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import yaml
3
+
4
+ #Define a function that creates a list of all the files in the folder. We will use this for different things.
5
+ def create_list_of_files(folder_path):
6
+ for root, dirs, files in os.walk(folder_path):
7
+ for filename in files:
8
+ found_files.append(os.path.join(root, filename))
9
+
10
+ #Define a function that checks for a Project CC. Without this, there cannot be an analysis.
11
+ def check_for_project_cc(folder_path):
12
+ found_files = []
13
+
14
+ # Walk through the directory
15
+ for root, dirs, files in os.walk(folder_path):
16
+ for filename in files:
17
+ if filename.lower() == 'project_cc.md':
18
+ found_files.append(os.path.join(root, filename))
19
+
20
+ # Check the results
21
+ if len(found_files) == 0:
22
+ print(f"We did not find a Project CC in your folder. We cannot run a compliance analysis without a Project CC.")
23
+ elif len(found_files) == 1:
24
+ print(f"We found exactly one Project CC in your folder. Great job!:")
25
+ print(f" - {found_files[0]}")
26
+ run_compliance_analysis(folder_path + "project_cc.md")
27
+ else:
28
+ print(f"Multiple Project CCs found:")
29
+ for file_path in found_files:
30
+ print(f" - {file_path}")
31
+ print("We found multiple Project CCs in your folder. There should only be one Project CC per project.")
32
+
33
+ def run_compliance_analysis(project_cc)):
34
+
35
+ # Load the Project CC's YAML file. This will be our starting point.
36
+ with open(project_cc, 'r') as file:
37
+ project_cc_yaml = yaml.safe_load(file)
38
+
39
+ # Check if the Act does not apply to the project, either because it is not on the EU market or falls into an exception
40
+
41
+ # Check for prohibited practices -- these are by default non-compliant
42
+
43
+ # Iterate through values of the second-level keys of prohibited_ai_practice_status
44
+ for key, value in project_cc_yaml['prohibited_ai_practice_status']:
45
+ if value: # This condition will be met whereever a prohibited practice exists
46
+ print(f"You have a prohibited practice and are non-compliant with the Act")
47
+ break
48
+ else:
49
+ print("No prohibited practices found. That's good...")
50
+
51
+ # Check if the key that indicates it is an AI system is present and if its value is true
52
+ if 'AI project is a machine-based system that is designed to operate with varying levels of autonomy and that may exhibit adaptiveness after deployment, and that, for explicit or implicit objectives, infers, from the input it receives, how to generate outputs such as predictions, content, recommendations, or decisions that can influence physical or virtual environments' in projec_cc_yaml and project_cc_yaml['AI project is a machine-based system that is designed to operate with varying levels of autonomy and that may exhibit adaptiveness after deployment, and that, for explicit or implicit objectives, infers, from the input it receives, how to generate outputs such as predictions, content, recommendations, or decisions that can influence physical or virtual environments'] == True:
53
+ print("The project is an AI system.")
54
+
55
+ #iterate through all of the
56
+
57
+ all_true = True
58
+ for key in secondary_keys:
59
+ if key in secondary_data and secondary_data[key] == True:
60
+ print(f"The key '{key}' is True in the secondary file.")
61
+ else:
62
+ print(f"The key '{key}' is not True in the secondary file.")
63
+ all_true = False
64
+
65
+ if all_true:
66
+ print("All specified keys in the secondary file are True.")
67
+ else:
68
+ print("Not all specified keys in the secondary file are True.")
69
+ else:
70
+ print(f"The key '{main_key}' is not True in the main file.")
71
+
72
+
73
+ def check_if_within_scope(project_cc):
74
+ within_scope = None
75
+ if project_cc[ai_project_owner_role][provider_status][value] == True and (project_cc[ai_system_status][ai_system_status][value] == True and (project_cc[eu_market_status][placed_on_market_status][value] == True or project_cc[eu_market_status][put_into_service_status][value] == True)) or (project_cc[gpai_model_status][gpai_model_status][value] == True and (project_cc[eu_market_status][placed_on_market_status][value] == True)): # Article 2.1(a)
76
+ return True
77
+ if project_cc[ai_project_owner_role][deployer_status][value] == True and project_cc[ai_project_owner_role][eu_location_status][value] == True: # Article 2.1(b)
78
+ return True
79
+ if (project_cc[ai_project_owner_role][provider_status][value] == True or project_cc[ai_project_owner_role][deployer_status][value]== True) and (project_cc[ai_system_status][ai_system_status][value] == True and project_cc[ai_project_owner_role][eu_location_status][value] == True and project_cc[ai_project_owner_role][output_status][value] == True): # Article 2.1(c)
80
+ return True
81
+ if (project_cc[ai_project_owner_role][importer_status][value] == True or project_cc[ai_project_owner_role][distributor_status][value] == True) and project_cc[ai_system_status][ai_system_status][value] == True: # Article 2.1(d)
82
+ return True
83
+ if project_cc[ai_project_owner_role][product_manufacturer_status][value] == True and project_cc[ai_system_status][ai_system_status][value] == True and ((project_cc[eu_market_status][placed_on_market_status][value] == True or project_cc[eu_market_status][put_into_service_status][value] == True)): # Article 2.1(e)
84
+ return True
85
+ else
86
+ return False
87
+
88
+ def check_data_ccs(folder_path):
89
+
90
+ for filename in os.listdir(folder_path):
91
+ # Check if the search word is in the filename
92
+ if "model_cc.md" in filename.lower():
93
+ # Construct the full file path
94
+ file_path = os.path.join(folder_path, filename)
95
+
96
+ # Process the file
97
+ process_file(file_path)
98
+
99
+
100
+ def check_all_true(file_path):
101
+ # Load the YAML file
102
+ with open(project_cc, 'r') as file:
103
+ data = yaml.safe_load(file)
104
+
105
+ # Iterate through top-level keys
106
+ for top_key, top_value in data.items():
107
+ if isinstance(top_value, dict):
108
+ # Iterate through second-level keys
109
+ for second_key, second_value in top_value.items():
110
+ if not second_value:
111
+ print("You are non-compliant with the Act")
112
+ break
113
+ else:
114
+ print("No problems here")
115
+
116
+
117
+
118
+ # Example usage
119
+ main_file = 'main.yaml'
120
+ secondary_file = 'secondary.yaml'
121
+ main_key = 'data_and_data_governance'
122
+ secondary_keys = [
123
+ 'Training data is relevant',
124
+ 'Training data is sufficiently representative',
125
+ 'Training data is, to the best extent possible, free of errors'
126
+ ]
127
+
128
+ check_yaml_values(main_file, secondary_file, main_key, secondary_keys)
129
+
130
+
131
+ def main():
132
+ # Prompt the user to enter a filename
133
+ file_path = input("Please enter a file path to the folder containing all your AI project's Compliance Cards: ")
134
+
135
+ # Call the function with the entered filename
136
+ check_for_project_cc(file_path)
137
+
138
+ if __name__ == "__main__":
139
+ main()
data_cc.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ data_and_data_governance:
2
+ 'Data sets has been subject to data governance and management practices appropriate for the intended purpose of the system': !!bool true # Art. 10(1)-(2)
3
+ 'Data governance and management practices have been applied to the relevant design choices': !!bool true # Art. 10(2)(a)
4
+ 'Data governance and management practices have been applied to data collection processes and the origin of data, and in the case of personal data, the original purpose of the data collection': !!bool true # Art. 10(2)(b)
5
+ 'Data governance and management practices have been applied to relevant data-preparation processing operations, such as annotation, labelling, cleaning, updating, enrichment and aggregation': !!bool true # Art. 10(2)(c)
6
+ 'Data governance and management practices have been applied to the formulation of assumptions, in particular with respect to the information that the data are supposed to measure and represent': !!bool true # Art. 10(2)(d)
7
+ 'Data governance and management practices included an assessment of the availability, quantity and suitability of the data sets that are needed': !!bool true # Art. 10(2)(e)
8
+ 'Data governance and management practices have included an examination of possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations': !!bool true # Art. 10(2)(f)
9
+ 'Data governance and management practices included appropriate measures to detect, prevent and mitigate possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations': !!bool true # Art. 10(2)(g)
10
+ 'Data governance and management practices have included the identification of relevant data gaps or shortcomings that prevent compliance with this Regulation, and how those gaps and shortcomings can be addressed': !!bool true # Art. 10(2)(h)
11
+ 'Training data is relevant': !!bool true # Art. 10(3); Rec. 67
12
+ 'Training data is sufficiently representative': !!bool true # Art. 10(3); Rec. 67
13
+ 'Training data is, to the best extent possible, free of errors': !!bool true # Art. 10(3); Rec. 67
14
+ 'Training data is complete in view of the intended purpose of system': !!bool true # Art. 10(3); Rec. 67
15
+ 'Training data possesses the appropriate statistical properties, including, where applicable, as regards the people in relation to whom the system is intended to be used': !!bool true # Art. 10(3)
16
+ 'Training data takes into account, to the extent required by the intended purpose, the characteristics or elements that are particular to the specific geographical, contextual, behavioural or functional setting within which the system is intended to be used': !!bool true # Art. 10(4)
17
+ 'Where special categories of personal data have been used to ensure the detection and correction of possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations, the use of this data was strictly necessary': !!bool true # Art. 10(5)
18
+ 'Where special categories of personal data have been used to ensure the detection and correction of possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations, the use complied with appropriate safeguards for the fundamental rights and freedoms of natural persons': !!bool true # Art. 10(5)
19
+ 'Where special categories of personal data have been used to ensure the detection and correction of possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations, the use of this data satisfied the provisions set out in Regulations (EU) 2016/679 and (EU) 2018/1725 and Directive (EU) 2016/680': !!bool true # Art. 10(5)
20
+ 'Where special categories of personal data have been used to ensure the detection and correction of possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations, the bias detection and correction was not effectively fulfilled by processing other data, including synthetic or anonymised data': !!bool true # Art. 10(5)(a)
21
+ 'Where special categories of personal data have been used to ensure the detection and correction of possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations, the special categories of personal data were not subject to technical limitations on the re-use of the personal data, and state-of-the-art security and privacy-preserving measures, including pseudonymisation': !!bool true # Art. 10(5)(b)
22
+ 'Where special categories of personal data have been used to ensure the detection and correction of possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations, the special categories of personal data were subject to measures to ensure that the personal data processed are secured, protected, subject to suitable safeguards, including strict controls and documentation of the access, to avoid misuse and ensure that only authorised persons have access to those personal data with appropriate confidentiality obligations': !!bool true # Art. 10(5)(c)
23
+ 'Where special categories of personal data have been used to ensure the detection and correction of possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations, the special categories of personal data were not to be transmitted, transferred or otherwise accessed by other parties': !!bool true # Art. 10(5)(d)
24
+ 'Where special categories of personal data have been used to ensure the detection and correction of possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations, the special categories of personal data were deleted once the bias was corrected or the personal data reached the end of its retention period (whichever came first)': !!bool true # Art. 10(5)(e)
25
+ 'Where special categories of personal data have been used to ensure the detection and correction of possible biases that are likely to affect the health and safety of persons, have a negative impact on fundamental rights or lead to discrimination prohibited under Union law, especially where data outputs influence inputs for future operations, the records of processing activities pursuant to Regulations (EU) 2016/679 and (EU) 2018/1725 and Directive (EU) 2016/680 include the reasons why the processing of special categories of personal data was strictly necessary to detect and correct biases, and why that objective could not be achieved by processing other data': !!bool true # Art. 10(5)(f)
26
+
27
+ technical_documentation:
28
+ 'Where relevant, the data requirements in terms of datasheets describing the training methodologies and techniques and the training data sets used, including a general description of these data sets, information about their provenance, scope and main characteristics; how the data was obtained and selected; labelling procedures (e.g. for supervised learning), data cleaning methodologies (e.g. outliers detection)': !!bool true # Art. 11; Annex IV(2)(d)
29
+ 'Validation and testing procedures used, including information about the validation and testing data used and their main characteristics; metrics used to measure accuracy, robustness and compliance with other relevant requirements set out in Title III, Chapter 2 as well as potentially discriminatory impacts; test logs and all test reports dated and signed by the responsible persons, including with regard to predetermined changes as referred to under point (f)': !!bool true # Art. 11; Annex IV(2)(g)
30
+ 'Cybersecurity measures put in place as regards the data (e.g., scanning for data poisoning)': !!bool true # Art. 11; Annex IV(2)(h)
31
+
32
+ transparency_and_provision_of_information_to_deployers:
33
+ 'Specifications for the input data, or any other relevant information in terms of the training, validation and testing data sets used, taking into account the intended purpose of the AI system': !!bool true # Art. 13(3)(b)(vi)
34
+
35
+ quality_management_system:
36
+ 'Systems and procedures for data management, including data acquisition, data collection, data analysis, data labelling, data storage, data filtration, data mining, data aggregation, data retention and any other operation regarding the data that is performed before and for the purposes of the placing on the market or putting into service of high-risk AI systems': !!bool true # Art. 17(1)(f)
model_cc.md ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ risk_management_system:
2
+ 'Known or reasonably foreseeable risks the model can pose to health or safety when used for intended purpose': !!bool true # Art. 9(2)(a)
3
+ 'Estimation and evaluation of risks when model used for intended purpose': !!bool true # Art. 9(2)(b)
4
+ 'Estimation and evaluation of risks when model used under conditions of reasonably foreseeable misuse': !!bool true # Art. 9(2)(b)
5
+ 'Testing to ensure model performs consistently for intended purpose': !!bool true # Art. 9(6)
6
+ 'Testing to ensure model complies with Act': !!bool true # Art. 9(6)
7
+ 'Testing against prior defined metrics appropriate to intended purpose': !!bool true # Art. 9(8)
8
+ 'Testing against probabilistic thresholds appropriate to intended purpose': !!bool true # Art. 9(8)
9
+
10
+ technical_documentation:
11
+ 'Pre-trained elements of model provided by third parties and how used, integrated or modified': !!bool true # Art. 11; Annex IV(2)(a)
12
+ 'General logic of model': !!bool true # Art. 11; Annex IV(2)(b)
13
+ 'Key design choices including rationale and assumptions made, including with regard to persons or groups on which model intended to be used': !!bool true # Art. 11; Annex IV(2)(b)
14
+ 'Main classification choices': !!bool true # Art. 11; Annex IV(2)(b)
15
+ 'What model is designed to optimise for and relevance of its different parameters': !!bool true # Art. 11; Annex IV(2)(b)
16
+ 'Description of the expected output and output quality of the system': !!bool true # Art. 11; Annex IV(2)(b)
17
+ 'Decisions about any possible trade-off made regarding the technical solutions adopted to comply with the requirements set out in Title III, Chapter 2': !!bool true # Art. 11; Annex IV(2)(b)
18
+ 'Assessment of the human oversight measures needed in accordance with Article 14, including an assessment of the technical measures needed to facilitate the interpretation of the outputs of AI systems by the deployers, in accordance with Articles 13(3)(d)': !!bool true # Art. 11; Annex IV(2)(e)
19
+ 'Validation and testing procedures used, including information about the validation and testing data used and their main characteristics; metrics used to measure accuracy, robustness and compliance with other relevant requirements set out in Title III, Chapter 2 as well as potentially discriminatory impacts; test logs and all test reports dated and signed by the responsible persons, including with regard to predetermined changes as referred to under point (f)': !!bool true # Art. 11; Annex IV(2)(g)
20
+ 'Cybersecurity measures put in place': !!bool true # Art. 11; Annex IV(2)(h)
21
+
22
+ transparency_and_information_provision:
23
+ 'Intended purpose': !!bool true # Art. 13(3)(b)(i)
24
+ 'Level of accuracy, including its metrics, robustness and cybersecurity referred to in Article 15 against which the high-risk AI system has been tested and validated and which can be expected, and any known and foreseeable circumstances that may have an impact on that expected level of accuracy, robustness and cybersecurity': !!bool true # Art. 13(3)(b)(ii)
25
+ 'Any known or foreseeable circumstance, related to the use of the high-risk AI system in accordance with its intended purpose or under conditions of reasonably foreseeable misuse, which may lead to risks to the health and safety or fundamental rights referred to in Article 9(2)': !!bool true # Art. 13(3)(b)(iii)
26
+ 'Technical capabilities and characteristics of the AI system to provide information that is relevant to explain its output': !!bool true # Art. 13(3)(b)(iv)
27
+ 'Performance regarding specific persons or groups of persons on which the system is intended to be used': !!bool true # Art. 13(3)(b)(v)
28
+ 'Specifications for the input data, or any other relevant information in terms of the training, validation and testing data sets used, taking into account the intended purpose of the AI system': !!bool true # Art. 13(3)(b)(vi)
29
+ 'Information to enable deployers to interpret the output of the high-risk AI system and use it appropriately': !!bool true # Art. 13(3)(b)(vii)
30
+ 'Human oversight measures referred to in Article 14, including the technical measures put in place to facilitate the interpretation of the outputs of AI systems by the deployers': !!bool true # Art. 13(3)(d)
31
+ 'Computational and hardware resources needed, the expected lifetime of the high-risk AI system and any necessary maintenance and care measures, including their frequency, to ensure the proper functioning of that AI system, including as regards software updates': !!bool true # Art. 13(3)(e)
32
+
33
+ accuracy_robustness_cybersecurity:
34
+ 'Appropriate level of accuracy': !!bool true # Art. 15(1)
35
+ 'Appropriate level of robustness': !!bool true # Art. 15(1)
36
+ 'Appropriate level of cybersecurity': !!bool true # Art. 15(1)
37
+ 'Use of relevant accuracy metrics': !!bool true # Art. 15(2)
38
+ 'Maximum possible resilience regarding errors, faults or inconsistencies that may occur within the system or the environment in which the system operates, in particular due to their interaction with natural persons or other systems. Technical and organisational measures shall be taken towards this regard': !!bool true # Art. 15(4)
39
+ 'Measures to prevent, detect, respond to, resolve and control for attacks trying to manipulate the training dataset (data poisoning), or pre-trained components used in training (model poisoning), inputs designed to cause the model to make a mistake (adversarial examples or model evasion), confidentiality attacks or model flaws': !!bool true # Art. 15(5)
40
+
41
+ quality_management_system:
42
+ 'Examination, test and validation procedures to be carried out before, during and after the development of the high-risk AI system, and the frequency with which they have to be carried out': !!bool true # Art. 17(1)(d)
43
+
44
+ transparency_obligations:
45
+ 'Providers of AI systems, including GPAI systems, generating synthetic audio, image, video or text content, shall ensure the outputs of the AI system are marked in a machine-readable format and detectable as artificially generated or manipulated': !!bool true # Art. 50(2)
46
+ 'Providers shall ensure their technical solutions are effective, interoperable, robust and reliable as far as this is technically feasible, taking into account specificities and limitations of different types of content, costs of implementation and the generally acknowledged state-of-the-art, as may be reflected in relevant technical standards': !!bool true # Art. 50(2)
47
+
48
+ classification_of_gpai_models:
49
+ 'Whether model has high impact capabilities evaluated on the basis of appropriate technical tools and methodologies, including indicators and benchmarks': !!bool true # Art. 51(1)(a)
50
+ 'Cumulative compute used for training measured in floating point operations (FLOPs)': !!bool true # Art. 51(2)
51
+
52
+ obligations_for_providers_of_gpai_models:
53
+ 'The tasks that the model is intended to perform and the type and nature of AI systems in which it can be integrated': !!bool true # Art. 53; Annex XI(1)(1)(a)
54
+ 'Acceptable use policies applicable': !!bool true # Art. 53; Annex XI(1)(1)(b)
55
+ 'The date of release and methods of distribution': !!bool true # Art. 53; Annex XI(1)(1)(c)
56
+ 'The architecture and number of parameters': !!bool true # Art. 53; Annex XI(1)(1)(d)
57
+ 'Modality (e.g. text, image) and format of inputs and outputs': !!bool true # Art. 53; Annex XI(1)(1)(e)
58
+ 'The license': !!bool true # Art. 53; Annex XI(1)(1)(f)
59
+ 'Training methodologies and techniques': !!bool true # Art. 53; Annex XI(1)(2)(b)
60
+ 'Key design choices including the rationale and assumptions made': !!bool true # Art. 53; Annex XI(1)(2)(b)
61
+ 'What the model is designed to optimise for': !!bool true # Art. 53; Annex XI(1)(2)(b)
62
+ 'The relevance of the different parameters, as applicable': !!bool true # Art. 53; Annex XI(1)(2)(b)
63
+ 'Information on the data used for training, testing and validation: type of data': !!bool true # Art. 53; Annex XI(1)(2)(c)
64
+ 'Information on the data used for training, testing and validation: provenance of data': !!bool true # Art. 53; Annex XI(1)(2)(c)
65
+ 'Information on the data used for training: curation methodologies (e.g. cleaning, filtering etc)': !!bool true # Art. 53; Annex XI(1)(2)(c)
66
+ 'Information on the data used for training: the number of data points': !!bool true # Art. 53; Annex XI(1)(2)(c)
67
+ 'Information on the data used for training: data points scope and main characteristics applicable': !!bool true # Art. 53; Annex XI(1)(2)(c)
68
+ 'Information on the data used for training: how the data was obtained and selected': !!bool true # Art. 53; Annex XI(1)(2)(c)
69
+ 'Information on the data used for training: all other measures to detect the unsuitability of data sources and methods to detect identifiable biases, where applicable': !!bool true # Art. 53; Annex XI(1)(2)(c)
70
+ 'The computational resources used to train the model (e.g. number of floating point operations – FLOPs), training time, and other relevant details related to the training': !!bool true # Art. 53; Annex XI(1)(2)(d)
71
+ 'Known or estimated energy consumption of the model; in case not known, this could be based on information about computational resources used': !!bool true # Art. 53; Annex XI(1)(2)(e)
72
+ 'Detailed description of the evaluation strategies, including evaluation results, on the basis of available public evaluation protocols and tools or otherwise of other evaluation methodologies. Evaluation strategies shall include evaluation criteria, metrics and the methodology on the identification of limitations': !!bool true # Art. 53; Annex XI(2)(1)
73
+ 'Where applicable, detailed description of the measures put in place for the purpose of conducting internal and/or external adversarial testing (e.g. red teaming), model adaptations, including alignment and fine-tuning': !!bool true # Art. 53; Annex XI(2)(2)
74
+
75
+ obligations_for_providers_of_gpai_models_with_systemic_risk:
76
+ 'Perform model evaluation in accordance with standardised protocols and tools reflecting the state of the art, including conducting and documenting adversarial testing of the model with a view to identify and mitigate systemic risk': !!bool true # Art. 55(1)(a)
77
+ 'Assess and mitigate possible systemic risks at Union level, including their sources, that may stem from the development': !!bool true # Art. 55(1)(b)
78
+ 'Ensure an adequate level of cybersecurity protection for the GPAI model with systemic risk and the physical infrastructure of the mode': !!bool true # Art. 55(1)(d)
project_cc.md ADDED
@@ -0,0 +1,297 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ smb_status:
2
+ smb_status: # Art. 11(1)
3
+ verbose: 'AI project is operated by a small or medium-sized enterprise'
4
+ value: !!bool false
5
+
6
+ eu_market_status:
7
+ placed_on_market_status: # Art. 3(9)
8
+ verbose: 'AI project is being made available on the Union market for the first time'
9
+ value: !!bool false
10
+ put_into_service_status: #Art. 3(11)
11
+ verbose: 'AI project is supplied for first use directly to the deployer or for own use in the Union for its intended purpose;'
12
+
13
+ ai_project_owner_role:
14
+ provider_status: # Art. 2
15
+ verbose: 'The owner of this AI project is a natural or legal person, public authority, agency or other body that develops an AI system or a general-purpose AI model or that has an AI system or a general-purpose AI model developed and places it on the market or puts the AI system into service under its own name or trademark, whether for payment or free of charge'
16
+ value: !!bool false
17
+ on_market_status: # Art 2
18
+ verbose: "AI project is placed on the market or put into service in the Union"
19
+ value: !!bool false
20
+ deployer_status: # Art. 2
21
+ verbose: 'The owner of this AI project is a natural or legal person, public authority, agency or other body using an AI system under its authority except where the AI system is used in the course of a personal non-professional activity'
22
+ value: !!bool false
23
+ eu_location_status: # Art. 2
24
+ verbose: 'The owner of this AI project has its place of establishment or location within the Union'
25
+ value: !!bool true
26
+ output_status: # Art. 2
27
+ verbose: 'the output produced by the AI system is used in the Union'
28
+ value: !!bool true
29
+ importer_status: # Art. 2
30
+ verbose: 'AI project owner is a natural or legal person located or established in the Union that places on the market an AI system that bears the name or trademark of a natural or legal person established in a third country'
31
+ value: !!bool true
32
+ distributor_status:
33
+ verbose: 'a natural or legal person in the supply chain, other than the provider or the importer, that makes an AI system available on the Union market'
34
+ value: !!bool true # Art. 2
35
+ product_manufacturer_status:
36
+ value: !!bool true # Art. 2
37
+
38
+ ai_system_status:
39
+ ai_system_status: # Art. 3(1)
40
+ verbose: 'AI project is a machine-based system that is designed to operate with varying levels of autonomy and that may exhibit adaptiveness after deployment, and that, for explicit or implicit objectives, infers, from the input it receives, how to generate outputs such as predictions, content, recommendations, or decisions that can influence physical or virtual environments'
41
+ value: !!bool true
42
+
43
+ gpai_model_status:
44
+ gpai_model_status: # Art. 3(63)
45
+ verbose: 'AI project is an AI model, including where such an AI model is trained with a large amount of data using self-supervision at scale, that displays significant generality and is capable of competently performing a wide range of distinct tasks regardless of the way the model is placed on the market and that can be integrated into a variety of downstream systems or applications, except AI models that are used for research, development or prototyping activities before they are placed on the market'
46
+ value: !!bool true
47
+
48
+ excepted_use:
49
+ scientific_r_and_d: # Art. 2(6)
50
+ verbose: 'AI project is or was specifically developed and put into service for the sole purpose of scientific research and development'
51
+ value: !!bool true
52
+ pre_market: # Art. 2(8)
53
+ verbose: 'AI project strictly consists of research, testing or development activity of the sort that takes place prior to their being placed on the market or put into service'
54
+ value: !!bool true
55
+ open_source_gpai: # Art. 53(2)
56
+ verbose: 'AI project involves AI models that are released under a free and open-source licence that allows for the access, usage, modification, and distribution of the model, and whose parameters, including the weights, the information on the model architecture, and the information on model usage, are made publicly available. This exception shall not apply to general purpose AI models with systemic risks'
57
+ value: !!bool true
58
+
59
+ prohibited_ai_practice_status:
60
+ manipulative: # Art. 5(1)(a)
61
+ verbose: 'This AI system deploys subliminal or purposefully manipulative or deceptive techniques, with the objective or effect of materially distorting the behavior of people by appreciably impairing their ability to make an informed decision, thereby causing them to take a decision that they would not have otherwise taken in a manner that causes or is reasonably likely to cause significant harm'
62
+ value: !!bool false
63
+ exploit_vulnerable: # Art. 5(1)(b)
64
+ verbose: 'This AI system exploits the vulnerabilities of natural people due to their age, disability or a specific social or economic situation, with the objective or effect of materially distorting their behaviour in a manner that causes or is reasonably likely to cause significant harm'
65
+ value: !!bool false
66
+ social_score: # Art. 5(1)(c)
67
+ verbose: 'This AI system is for the evaluation or classification of natural people over a certain period of time based on their social behaviour or known, inferred or predicted personal or personality characteristics, with the social score leading to at least one of the following: (i) detrimental or unfavourable treatment of certain natural people in social contexts that are unrelated to the contexts in which the data was originally generated or collected; (ii) detrimental or unfavourable treatment of certain natural people that is unjustified or disproportionate to their social behaviour or its gravity'
68
+ value: !!bool false
69
+ crime_prediction: # Art. 5(1)(d)
70
+ verbose: 'This AI system makes risk assessments of natural persons in order to assess or predict the risk of them committing a criminal offence, based solely on the profiling of the natural person or on assessing their personality traits and characteristics (and does not support the human assessment of the involvement of a person in a criminal activity, which is already based on objective and verifiable facts directly linked to a criminal activity)'
71
+ value: !!bool false
72
+ untarged_face: # Art. 5(1)(e)
73
+ verbose: 'This AI systems creates or expand facial recognition databases through the untargeted scraping of facial images from the internet or CCTV footage'
74
+ value: !!bool false
75
+ emotion_prediction: # Art. 5(1)(f)
76
+ verbose: 'This AI systems infer emotions of a natural person in the areas of workplace and education institutions and is not intended to be put in place or into the market for medical or safety reasons'
77
+ value: !!bool false
78
+
79
+ high_risk_ai_system_status:
80
+ safety_component: # Art. 6(1)(a)
81
+ verbose: 'AI project is intended to be used as a safety component of a product'
82
+ value: !!bool false
83
+ product_covered_by_machinery_regulation: # Art. 6(1)(b); Annex I
84
+ verbose: 'AI project is itself a product, covered by Directive 2006/42/EC of the European Parliament and of the Council of 17 May 2006 on machinery, and amending Directive 95/16/EC (OJ L 157, 9.6.2006, p. 24) [as repealed by the Machinery Regulation]'
85
+ value: !!bool false
86
+ product_covered_by_toy_safety_regulation: # Art. 6(1)(b); Annex I
87
+ verbose: 'AI project is itself a product, covered by Directive 2009/48/EC of the European Parliament and of the Council of 18 June 2009 on the safety of toys (OJ L 170, 30.6.2009, p. 1)'
88
+ value: !!bool false
89
+ product_covered_by_watercraft_regulation: # Art. 6(1)(b); Annex I
90
+ verbose: 'AI project is itself a product, covered by Directive 2013/53/EU of the European Parliament and of the Council of 20 November 2013 on recreational craft and personal watercraft and repealing Directive 94/25/EC (OJ L 354, 28.12.2013, p. 90)'
91
+ value: !!bool false
92
+ biometric_categorization: # Art. 6(2); Annex III(1)(b)
93
+ verbose: 'AI project is intended to be used for biometric categorisation, according to sensitive or protected attributes or characteristics based on the inference of those attributes or characteristics'
94
+ value: !!bool false
95
+ emotion_recognition: # Art. 6(2); Annex III(1)(c)
96
+ verbose: 'AI project is intended to be used for emotion recognition'
97
+ value: !!bool false
98
+ critical_infrastructure: # Art. 6(2); Annex III(2)
99
+ verbose: 'AI project is intended to be used as safety components in the management and operation of critical digital infrastructure, road traffic, or in the supply of water, gas, heating or electricity'
100
+ value: !!bool false
101
+ educational: # Art. 6(2); Annex III(3)(a)
102
+ verbose: 'AI project is intended to be used to determine access or admission or to assign natural persons to educational and vocational training institutions at all levels'
103
+ value: !!bool false
104
+ recruitment: # Art. 6(2); Annex III(4)(a)
105
+ verbose: 'AI project is intended to be used for the recruitment or selection of natural persons, in particular to place targeted job advertisements, to analyse and filter job applications, and to evaluate candidates'
106
+ value: !!bool false
107
+ public_assistance: # Art. 6(2); Annex III(5)(a)
108
+ verbose: 'AI project is intended to be used by public authorities or on behalf of public authorities to evaluate the eligibility of natural persons for essential public assistance benefits and services, including healthcare services, as well as to grant, reduce, revoke, or reclaim such benefits and services'
109
+ value: !!bool false
110
+ victim_assessment: # Art. 6(2); Annex III(6)(a)
111
+ verbose: 'AI project is intended to be used by or on behalf of law enforcement authorities, or by Union institutions, bodies, offices or agencies in support of law enforcement authorities or on their behalf to assess the risk of a natural person becoming the victim of criminal offences'
112
+ value: !!bool false
113
+ polygraph: # Art. 6(2); Annex III(7)(a)
114
+ verbose: 'AI project is intended to be used by or on behalf of competent public authorities or by Union institutions, bodies, offices or agencies as polygraphs or similar tools'
115
+ value: !!bool false
116
+ judicial: # Art. 6(2); Annex III(8)(a)
117
+ verbose: 'AI project is intended to be used by a judicial authority or on their behalf to assist a judicial authority in researching and interpreting facts and the law and in applying the law to a concrete set of facts, or to be used in a similar way in alternative dispute resolution'
118
+ value: !!bool false
119
+ filter_exception_rights: # Art. 6(3)
120
+ verbose: 'The AI initiate does not pose a significant risk of harm to the health, safety or fundamental rights of natural persons, including by not materially influencing the outcome of decision making'
121
+ value: !!bool true
122
+ filter_exception_narrow: # Art. 6(3)(a)
123
+ verbose: 'The AI project is intended to perform a narrow procedural task'
124
+ value: !!bool false
125
+ filter_exception_narrow: # Art. 6(3)(b)
126
+ verbose: 'the AI project is intended to improve the result of a previously completed human activity'
127
+ value: !!bool false
128
+ filter_exception_deviation: # Art. 6(3)(c)
129
+ verbose: 'the AI system is intended to detect decision-making patterns or deviations from prior decision-making patterns and is not meant to replace or influence the previously completed human assessment, without proper human review'
130
+ value: !!bool false
131
+ filter_exception_deviation: # Art. 6(3)(d)
132
+ verbose: 'the AI system is intended to perform a preparatory task to an assessment relevant for the purposes of the use cases listed in Annex III.'
133
+ value: !!bool false
134
+
135
+ risk_management_system:
136
+ established: # Article 9
137
+ verbose: 'Risk management system has been established, implemented, documented and maintained for AI system'
138
+ value: !!bool false
139
+ lifecycle: # Art. 9(2)
140
+ verbose: 'Risk management system (high-risk AI system) has been planned, run, reviewed, and updated, throughout the entire lifecycle of AI system'
141
+ value: !!bool false
142
+ risk_analysis_intended: # Art. 9(2)(a)
143
+ verbose: 'Risk management system for AI system includes the identification and analysis of any known or reasonably foreseeable risks that the AI system might pose to health, safety or fundamental rights when used in accordance with its intended purpose'
144
+ value: !!bool false
145
+ risk_estimation_foreseeable: # Art. 9(2)(b)
146
+ verbose: 'Risk management system for AI system includes the estimation and evaluation of the risks that may emerge when the high-risk AI system is used in accordance with its intended purpose, and under conditions of reasonably foreseeable misuse;
147
+ value: !!bool false
148
+ risk_post_market: # Art. 9(2)(c)
149
+ verbose: 'Risk management system for AI system includes the evaluation of other risks possibly arising, based on the analysis of data gathered from the post-market monitoring system'
150
+ value: !!bool false
151
+ risk_management_measures: # Art. 9(2)(d)
152
+ verbose: 'Where risk that the AI system might pose to health, safety or fundamental rights when used in accordance with its intended purpose have been identified, appropriate and targeted risk management measures designed to address the risks have been adopted'
153
+ value: !!bool false
154
+ documentation: # Art. 9(5)
155
+ verbose: 'Where risk that the AI system might pose to health, safety or fundamental rights when used in accordance with its intended purpose have been identified, these risks have been documented and communicated to deployers and either eliminated, if feasible, or mitigated such that any residual risk is judged to be acceptable'
156
+ value: !!bool false
157
+ tested: # Art. 9(6)
158
+ verbose: 'To determine the right mitigations, and to show the high-risk AI system performs consistently its intended purpose and is in compliance with the risk management requirements, the AI system has been tested'
159
+ value: !!bool false
160
+ testing_threshold: # Art. 9(8)
161
+ verbose: 'Testing has or will be performed before the AI system is placed on the market and has or will be carried out against prior defined metrics and probabilistic thresholds that are appropriate to the intended purpose'
162
+ value: !!bool false
163
+
164
+ technical_documentation:
165
+ drawn_up: # Art. 11(1)
166
+ verbose: 'Technical documentation for the high-risk AI system has been drawn up before the system has been placed on the market or put into service and will be kept up-to date'
167
+ value: !!bool false
168
+ intended_purpose: # Art. 11(1); Annex IV(1)(a)
169
+ verbose: 'The Technical Documentation includes a general description of the AI system that covers its intended purpose, the name of the provider and the version of the system reflecting its relation to previous versions'
170
+ value: !!bool false
171
+ interaction: # Art. 11(1); Annex IV(1)(b)
172
+ verbose: 'The Technical Documentation includes a general description of the AI system that covers how the AI system interacts with, or can be used to interact with, hardware or software, including with other AI systems, that are not part of the AI system itself, where applicable'
173
+ value: !!bool false
174
+ versions: # Art. 11(1); Annex IV(1)(c)
175
+ verbose: 'Technical Documentation includes a general description of the AI system that covers the versions of relevant software or firmware, and any requirements related to version updates'
176
+ value: !!bool false
177
+ packages: # Art. 11(1); Annex IV(1)(d)
178
+ verbose: 'Technical Documentation includes a general description of the AI system that covers the description of all the forms in which the AI system is placed on the market or put into service, such as software packages embedded into hardware, downloads, or APIs'
179
+ value: !!bool false
180
+ hardware: # Art. 11(1); Annex IV(1)(e)
181
+ verbose: 'Technical Documentation includes a general description of the AI system that covers the description of the hardware on which the AI system is intended to run'
182
+ value: !!bool false
183
+ development_steps: # Art. 11(1); Annex IV(2)(a)
184
+ verbose: 'Technical Documentation includes a detailed description of the elements of the AI system and of the process for its development, covering the methods and steps performed for the development of the AI system, including, where relevant, recourse to pre-trained systems or tools provided by third parties and how those were used, integrated or modified by the provider'
185
+ value: !!bool false
186
+ design_specs: # Art. 11(1); Annex IV(2)(b)
187
+ verbose: 'Technical Documentation includes a detailed description of the elements of the AI system and of the process for its development, covering the design specifications of the system, namely the general logic of the AI system and of the algorithms; the key design choices including the rationale and assumptions made, including with regard to persons or groups of persons in respect of who, the system is intended to be used; the main classification choices; what the system is designed to optimise for, and the relevance of the different parameters; the description of the expected output and output quality of the system; the decisions about any possible trade-off made regarding the technical solutions adopted to comply with the requirements set out in Chapter III, Section 2'
188
+ value: !!bool false
189
+ risk_management: # Art. 11(1); Annex IV(5)
190
+ verbose: 'Technical Documentation includes a detailed description of the risk management system in accordance with Article 9'
191
+ value: !!bool false
192
+ changes: # Art. 11(1); Annex IV(6)
193
+ verbose: 'Technical Documentation includes a description of relevant changes made by the provider to the system through its lifecycle'
194
+ value: !!bool false
195
+ declaration_of_conformity: # Art. 11(1); Annex IV(8)
196
+ verbose: 'Technical Documentation includes a copy of the EU declaration of conformity referred to in Article 47'
197
+ value: !!bool false
198
+ post_market: # Art. 11(1); Annex IV(9)
199
+ verbose: 'Technical Documentation includes a detailed description of the system in place to evaluate the AI system performance in the post-market phase in accordance with Article 72, including the post-market monitoring plan referred to in Article 72(3)'
200
+ value: !!bool false
201
+ product: # Art. 11(2)
202
+ verbose: 'High-risk AI system is either not related to a product covered by the Union harmonisation legislation listed in Section A of Annex I and placed on the market or put into service or, if it is, a single set of technical documentation has been drawn up containing all the information set out in paragraph 1, as well as the information required under those legal acts'
203
+ value: !!bool false
204
+
205
+ record_keeping:
206
+ logging_generally: # Article 12(1)
207
+ verbose: 'The AI system technically allows for the automatic recording of events (logs) over the lifetime of the system'
208
+ value: !!bool false
209
+ logging_risk: # Art. 12(1)(a)
210
+ verbose: 'The AI system technically allows for the automatic recording of events (logs) over the lifetime of the system and these logging capabilities enable the recording of events relevant for identifying situations that may result in the high-risk AI system presenting a risk within the meaning of Article 79(1) or in a substantial modification'
211
+ value: !!bool false
212
+ logging_post_market: # Art. 12(1)(b)
213
+ verbose: 'The AI system technically allows for the automatic recording of events (logs) over the lifetime of the system and these logging capabilities enable the recording of events relevant for facilitating the post-market monitoring referred to in Article 72'
214
+ value: !!bool false
215
+ monitoring: # Art. 12(1)(c)
216
+ verbose: 'The AI system technically allows for the automatic recording of events (logs) over the lifetime of the system and these logging capabilities enable the recording of events relevant for monitoring the operation of high-risk AI systems referred to in Article 26(5)'
217
+ value: !!bool false
218
+ recording_use: # Art. 12(2)(a)
219
+ verbose: 'For the remote biometric identification systems high-risk AI systems referred to in point 1 (a), of Annex III, the logging capabilities shall provide, at a minimum, the recording of the period of each use of the system (start date and time and end date and time of each use)'
220
+ value: !!bool false
221
+ reference_db: # Art. 12(2)(b)
222
+ verbose: 'For the remote biometric identification systems high-risk AI systems referred to in point 1 (a), of Annex III, the logging capabilities shall provide, at a minimum, the reference database against which input data has been checked by the system'
223
+ value: !!bool false
224
+ input: # Art. 12(2)(c)
225
+ verbose: 'For the remote biometric identification systems high-risk AI systems referred to in point 1 (a), of Annex III, the logging capabilities shall provide, at a minimum, the input data for which the search has led to a match'
226
+ value: !!bool false
227
+ 'For the remote biometric identification systems high-risk AI systems referred to in point 1 (a), of Annex III, the logging capabilities shall provide, at a minimum, the identification of the natural persons involved in the verification of the results, as referred to in Article 14(5)': !!bool false # Art. 12(2)(d)
228
+
229
+ transparency_and_provision_of_information_to_deployers:
230
+ 'AI system is designed and developed to ensure operation is sufficiently transparent for deployers to interpret output and use appropriately': !!bool true # Art. 13(1)
231
+ 'AI system is designed and developed with transparency to ensure compliance with provider and deployer obligations in Section 3': !!bool true # Art. 13(1)
232
+ 'AI system is accompanied by instructions for use in appropriate digital format or otherwise, with concise, complete, correct, clear, relevant, accessible, and comprehensible information for deployers': !!bool true # Art. 13(2)
233
+ 'Instructions include provider identity and contact details, and if applicable, authorized representative details': !!bool true # Art. 13(3)(a)
234
+ 'Instructions include AI system characteristics, capabilities, performance limitations, and intended purpose': !!bool true # Art. 13(3)(b)(i)
235
+ 'Instructions include accuracy metrics, robustness, cybersecurity, and potential impacts on these': !!bool true # Art. 13(3)(b)(ii)
236
+ 'Instructions include foreseeable circumstances that may risk health, safety, or fundamental rights': !!bool true # Art. 13(3)(b)(iii)
237
+ 'Instructions include technical capabilities to provide information relevant to explaining output': !!bool true # Art. 13(3)(b)(iv)
238
+ 'Instructions include performance regarding specific persons or groups, if applicable': !!bool true # Art. 13(3)(b)(v)
239
+ 'Instructions include input data specifications and relevant training, validation, and testing dataset information': !!bool true # Art. 13(3)(b)(vi)
240
+ 'Instructions include information to enable deployers to interpret and appropriately use AI system output': !!bool true # Art. 13(3)(b)(vii)
241
+ 'Instructions include predetermined changes to AI system and its performance since initial conformity assessment': !!bool true # Art. 13(3)(c)
242
+ 'Instructions include human oversight measures and technical measures for output interpretation': !!bool true # Art. 13(3)(d)
243
+ 'Instructions include computational and hardware resource needs, expected lifetime, and maintenance measures': !!bool true # Art. 13(3)(e)
244
+ 'Instructions include description of mechanisms for deployers to collect, store, and interpret logs, if applicable': !!bool true # Art. 13(3)(f)
245
+
246
+ human_oversight:
247
+ 'AI system is designed and developed to be effectively overseen by natural persons during use, including appropriate human-machine interface tools': !!bool true # Art. 14(1)
248
+ 'Human oversight aims to prevent or minimize risks to health, safety, or fundamental rights during intended use or foreseeable misuse': !!bool true # Art. 14(2)
249
+ 'Oversight measures are commensurate with risks, autonomy level, and use context, ensured through provider-built measures and/or deployer-implemented measures': !!bool true # Art. 14(3)
250
+ 'AI system enables assigned persons to understand its capacities and limitations, monitor operation, and detect anomalies': !!bool true # Art. 14(4)
251
+ 'AI system enables assigned persons to be aware of potential automation bias': !!bool true # Art. 14(4)(a)
252
+ 'AI system enables assigned persons to correctly interpret its output': !!bool true # Art. 14(4)(c)
253
+ 'AI system enables assigned persons to decide not to use it or override its output': !!bool true # Art. 14(4)(d)
254
+ 'AI system enables assigned persons to intervene or halt the system through a stop button or similar procedure': !!bool true # Art. 14(4)(e)
255
+ 'For Annex III point 1(a) systems, actions or decisions require verification by at least two competent persons, with exceptions for law enforcement, migration, border control, or asylum': !!bool true # Art. 14(5)
256
+
257
+ accuracy_robustness_cybersecurity:
258
+ 'AI system is designed and developed to achieve appropriate levels of accuracy, robustness, and cybersecurity, performing consistently throughout its lifecycle': !!bool true # Art. 15(1)
259
+ 'Commission encourages development of benchmarks and measurement methodologies for accuracy and robustness': !!bool true # Art. 15(2)
260
+ 'Accuracy levels and relevant metrics are declared in accompanying instructions of use': !!bool true # Art. 15(3)
261
+ 'AI system is resilient against errors, faults, or inconsistencies, with technical and organizational measures implemented': !!bool true # Art. 15(4)
262
+ 'AI system that continues learning after deployment is designed to eliminate or reduce risk of biased outputs influencing future operations': !!bool true # Art. 15(4)
263
+ 'AI system is resilient against unauthorized third-party attempts to alter use, outputs, or performance': !!bool true # Art. 15(5)
264
+ 'Cybersecurity solutions are appropriate to relevant circumstances and risks': !!bool true # Art. 15(5)
265
+ 'Technical solutions address AI-specific vulnerabilities, including measures against data poisoning, model poisoning, adversarial examples, and confidentiality attacks': !!bool true # Art. 15(5)
266
+
267
+ quality_management_system:
268
+ 'Initiative is subject to a quality management system with strategy for regulatory compliance': !!bool true # Art. 17(1)(a)
269
+ 'System includes techniques, procedures, and actions for design, control, and verification of high-risk AI system': !!bool true # Art. 17(1)(b)
270
+ 'System includes techniques, procedures, and actions for development, quality control, and quality assurance': !!bool true # Art. 17(1)(c)
271
+ 'System includes examination, test, and validation procedures before, during, and after development': !!bool true # Art. 17(1)(d)
272
+
273
+ transparency_obligations:
274
+ 'Providers of AI systems generating synthetic content ensure outputs are marked and detectable as artificially generated': !!bool true # Art. 50(2)
275
+ 'Technical solutions for marking are effective, interoperable, robust, and reliable': !!bool true # Art. 50(2)
276
+
277
+ gpai_model_classification:
278
+ 'Model impact capabilities evaluated using appropriate technical tools and methodologies': !!bool true # Art. 51
279
+ 'Cumulative compute for training measured in floating point operations (FLOPs)': !!bool true # Art. 51(2)
280
+
281
+ gpai_model_provider_obligations:
282
+ 'Provide information on intended tasks, integration types, and acceptable use policies': !!bool true # Art. 53(1)(a); Annex XI(1)(1)(a-c)
283
+ 'Provide details on model architecture, parameters, input/output modalities, and license': !!bool true # Art. 53(1)(a); Annex XI(1)(1)(d-f)
284
+ 'Describe training methodologies, key design choices, and optimization goals': !!bool true # Art. 53(1)(b); Annex XI(1)(2)(b)
285
+ 'Provide information on training, testing, and validation data': !!bool true # Art. 53(1)(b); Annex XI(1)(2)(c)
286
+ 'Disclose computational resources and energy consumption for training': !!bool true # Art. 53(1)(b); Annex XI(1)(2)(d-e)
287
+ 'Describe evaluation strategies, results, and adversarial testing measures': !!bool true # Art. 53(1)(b); Annex XI(2)(1-2)
288
+
289
+ obligations_to_downstream_providers:
290
+ 'Provide general description of GPAI model, including intended tasks and integration types': !!bool true # Art. 53(1)(b); Annex XII(1)(a-h)
291
+ 'Describe model elements, development process, and integration requirements': !!bool true # Art. 53(1)(b); Annex XII(2)(a-c)
292
+
293
+ obligations_for_systemic_risk_models:
294
+ 'Perform model evaluation using standardized protocols and conduct adversarial testing': !!bool true # Art. 55(1)(a)
295
+ 'Assess and mitigate possible systemic risks at Union level': !!bool true # Art. 55(1)(b)
296
+ 'Ensure adequate cybersecurity protection for the model and infrastructure': !!bool true # Art. 55(1)(d)
297
+