Spaces:
Sleeping
Sleeping
qqubb
commited on
Commit
·
568e135
1
Parent(s):
2cb848b
minor corrections
Browse files
__pycache__/compliance_analysis.cpython-310.pyc
CHANGED
Binary files a/__pycache__/compliance_analysis.cpython-310.pyc and b/__pycache__/compliance_analysis.cpython-310.pyc differ
|
|
compliance_analysis.py
CHANGED
@@ -35,7 +35,7 @@ def run_compliance_analysis_on_project(project_cc_yaml):
|
|
35 |
set_eu_market_status(project_variables, project_cc_yaml)
|
36 |
|
37 |
# Check if the project is within scope of the Act. If it's not, the analysis is over.
|
38 |
-
if check_within_scope(project_cc_yaml):
|
39 |
msg = ("Project is within the scope of Act. Let's continue...")
|
40 |
else:
|
41 |
msg = ("Project is not within the scope of what is regulated by the Act.")
|
|
|
35 |
set_eu_market_status(project_variables, project_cc_yaml)
|
36 |
|
37 |
# Check if the project is within scope of the Act. If it's not, the analysis is over.
|
38 |
+
if check_within_scope(project_variables, project_cc_yaml):
|
39 |
msg = ("Project is within the scope of Act. Let's continue...")
|
40 |
else:
|
41 |
msg = ("Project is not within the scope of what is regulated by the Act.")
|
project_cc.yaml
CHANGED
@@ -127,6 +127,7 @@ prohibited_practice:
|
|
127 |
value: !!bool false
|
128 |
real_time_exception_threat:
|
129 |
verbose: 'The AI project involves use of ‘real-time’ remote biometric identification systems in publicly accessible spaces for the purposes of law enforcement stricly for the prevention of a specific, substantial and imminent threat to the life or physical safety of natural persons or a genuine and present or genuine and foreseeable threat of a terrorist attack'
|
|
|
130 |
real_time_exception_investigation:
|
131 |
verbose: 'The AI project involves use of ‘real-time’ remote biometric identification systems in publicly accessible spaces for the purposes of law enforcement stricly for the localisation or identification of a person suspected of having committed a criminal offence, for the purpose of conducting a criminal investigation or prosecution or executing a criminal penalty for offences referred to in Annex II and punishable in the Member State concerned by a custodial sentence or a detention order for a maximum period of at least four years.'
|
132 |
value: !!bool false
|
@@ -409,7 +410,7 @@ fundamental_rights_assessment:
|
|
409 |
verbose: 'AI project has been subject to a fundamental rights impact assessment that includes a description of the deployer’s processes in which the AI project will be used in line with its intended purpose'
|
410 |
value: !!bool false
|
411 |
time_period: # Art. 27(1)(b)
|
412 |
-
|
413 |
value: !!bool false
|
414 |
persons_affected: # Art. 27(1)(c)
|
415 |
verbose: 'AI project has been subject to a fundamental rights impact assessment that describes the categories of natural persons and groups likely to be affected by its use in the specific context'
|
@@ -427,9 +428,10 @@ fundamental_rights_assessment:
|
|
427 |
# Information related to the Act's requirements for all AI systems
|
428 |
|
429 |
transparency_obligations:
|
430 |
-
|
431 |
verbose: 'The AI project designed and developed in such a way that the natural persons concerned are informed that they are interacting with AI'
|
432 |
-
|
|
|
433 |
verbose: 'The outputs of the AI project are marked in a machine-readable format and detectable as artificially generated or manipulated'
|
434 |
value: !!bool false
|
435 |
marking_solutions: # Art. 50(2)
|
|
|
127 |
value: !!bool false
|
128 |
real_time_exception_threat:
|
129 |
verbose: 'The AI project involves use of ‘real-time’ remote biometric identification systems in publicly accessible spaces for the purposes of law enforcement stricly for the prevention of a specific, substantial and imminent threat to the life or physical safety of natural persons or a genuine and present or genuine and foreseeable threat of a terrorist attack'
|
130 |
+
value: !!bool false
|
131 |
real_time_exception_investigation:
|
132 |
verbose: 'The AI project involves use of ‘real-time’ remote biometric identification systems in publicly accessible spaces for the purposes of law enforcement stricly for the localisation or identification of a person suspected of having committed a criminal offence, for the purpose of conducting a criminal investigation or prosecution or executing a criminal penalty for offences referred to in Annex II and punishable in the Member State concerned by a custodial sentence or a detention order for a maximum period of at least four years.'
|
133 |
value: !!bool false
|
|
|
410 |
verbose: 'AI project has been subject to a fundamental rights impact assessment that includes a description of the deployer’s processes in which the AI project will be used in line with its intended purpose'
|
411 |
value: !!bool false
|
412 |
time_period: # Art. 27(1)(b)
|
413 |
+
verbos: 'AI project has been subject to a fundamental rights impact assessment that includes a description of the period of time within which, and the frequency with which, each high-risk AI project is intended to be used'
|
414 |
value: !!bool false
|
415 |
persons_affected: # Art. 27(1)(c)
|
416 |
verbose: 'AI project has been subject to a fundamental rights impact assessment that describes the categories of natural persons and groups likely to be affected by its use in the specific context'
|
|
|
428 |
# Information related to the Act's requirements for all AI systems
|
429 |
|
430 |
transparency_obligations:
|
431 |
+
synthetic_content1: # Art. 50(1)
|
432 |
verbose: 'The AI project designed and developed in such a way that the natural persons concerned are informed that they are interacting with AI'
|
433 |
+
value: !!bool false
|
434 |
+
synthetic_content2: # Art. 50(2)
|
435 |
verbose: 'The outputs of the AI project are marked in a machine-readable format and detectable as artificially generated or manipulated'
|
436 |
value: !!bool false
|
437 |
marking_solutions: # Art. 50(2)
|