-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathproctify.ttl
More file actions
178 lines (151 loc) · 6.08 KB
/
proctify.ttl
File metadata and controls
178 lines (151 loc) · 6.08 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dcterms: <http://purl.org/dc/terms#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix freq: <http://purl.org/cld/freq/> .
@prefix airo: <https://w3id.org/airo#> .
@prefix vair: <https://w3id.org/vair#> .
@prefix dpv: <https://w3id.org/dpv#> .
@prefix dqv: <http://www.w3.org/ns/dqv#> .
@prefix dcat: <https://www.w3.org/TR/vocab-dcat-3/> .
@prefix ex: <https://example.com/proctify#> .
@base <https://example.com/proctify#> .
ex:proctify
a airo:AISystem ;
airo:hasVersion ex:v_1.0.2 ;
dcterms:date "2023-09-11"^^xsd:date ;
airo:hasModality vair:Software ;
airo:usesTechnique vair:DeepLearning ;
airo:hasInput ex:facial_video ;
airo:producesOutput ex:suspicious_behaviour_alarm ;
airo:isProvidedBy ex:AIEduX ;
airo:isDevelopedBy ex:AIEduX ;
airo:hasComponent ex:facial_analysis_toolkit,
ex:susbehaved_dataset ;
airo:hasModel ex:susbehaved_model ;
airo:isAppliedWithinDomain vair:Education ;
airo:hasPurpose vair:DetectingProhibitedBehaviourDuringTest,
ex:facial_behaviour_analysis,
ex:video_analysis ;
airo:hasCapability ex:facial_recognition ;
airo:isDeployedBy ex:university ;
#airo:hasUseInstruction <http://tinyurl.com/462b9jyv> ;
#airo:hasDeploymentInstruction <http://tinyurl.com/4s67jfss> ;
airo:hasAutomationLevel vair:PartialAutomation ;
airo:hasAISubject ex:student,
ex:other_occupant ;
airo:hasAIUser ex:instructor ;
airo:hasRisk ex:inaccuracy_risk_for_darker_skin ;
airo:hasRiskControl ex:bias_testing ;
dqv:hasQualityMeasurement ex:alarm_precision_measurement, ex:alarm_recall_measurement, ex:alarm_f_score_measurement ;
airo:hasPreDeterminedChange ex:change_of_model ;
airo:compliesWithRegulation ex:EU_GDPR ,
ex:Irish_Data_Protection_Act ;
airo:conformsToStandard vair:ISOIEC42001-2023 ,
vair:ISOIEC27001-2022 ;
airo:followsCodeOfConduct ex:use_of_AI_and_data_in_teaching_and_learning ;
dpv:hasProcessing ex:processing_1 .
ex:EU_GDPR dpv:hasJurisdiction ex:EU .
ex:Irish_Data_Protection_Act dpv:hasJurisdiction ex:Ireland .
ex:facial_analysis_toolkit
a airo:AIComponent ;
airo:hasVersion ex:v_3.3.2 ;
airo:isProvidedBy ex:FACE_research_group ;
airo:hasPurpose ex:extracting_facial_landmark,
ex:extracting_gaze_direction,
ex:extracting_head_pose ;
airo:hasDocumentation <http://tinyurl.com/3wnyxyun> .
ex:AIEdux a airo:AIProvider .
ex:susbehaved_model
a airo:AIModel ;
airo:hasVersion ex:v_1.1.2 ;
airo:hasPurpose ex:detecting_suspicious_behaviour,
ex:raising_alarm ;
airo:hasDocumentation <http://tinyurl.com/3wnyxyun> .
ex:susbehaved_dataset
a dcat:Dataset ;
airo:hasVersion ex:v_2.0.1 ;
airo:hasPurpose ex:train_model ;
airo:hasDocumentation <http://tinyurl.com/db4whuw9> .
ex:student
a airo:AISubject,
vair:NaturalPerson,
dpv:DataSubject ;
airo:hasHumanInvolvement vair:IntendedInvolvement, vair:ActiveInvolvement , vair:InformedInvolvement ;
airo:hasControlOverAIOutput vair:ChallengeOutput .
ex:other_occupant
a airo:AISubject,
vair:NaturalPerson ;
airo:hasHumanInvolvement vair:UnintendedInvolvement, vair:PassiveInvolvement, vair:UninformedInvolvement ;
airo:hasControlOverAIOutput vair:CannotOptOutOfOutput .
ex:instructor
a airo:AIUser ,
vair:NaturalPerson ;
airo:hasHumanInvolvement vair:IntendedInvolvement, vair:ActiveInvolvement , vair:InformedInvolvement ;
airo:hasControlOverAIOutput vair:CorrectOutput .
ex:processing_1
a dpv:Processing ;
dpv:hasData ex:facial_data ;
dpv:hasLegalBasis dpv:InformedConsent ;
dpv:hasDataSubject ex:student .
ex:facial_data a dpv:SensitivePersonalData ;
dpv:hasDataSource ex:user_input .
ex:inaccuracy_risk_for_darker_skin
a airo:Risk ;
airo:hasLikelihood "Low" ;
airo:hasConsequence ex:raise_of_false_alarms_for_darker_skin .
ex:unrepresentative_dataset
a airo:RiskSource ;
airo:isRiskSourceFor ex:inaccuracy_risk_for_darker_skin ;
airo:hasLikelihood "Medium" .
ex:testing_dataset_for_representativeness
a airo:RiskControl ;
airo:modifiesRiskConcept ex:unrepresentative_dataset .
ex:raise_of_false_alarms_for_darker_skin
a airo:Consequence ;
airo:hasImpact ex:bias_against_students_with_darker_skin ;
airo:hasLikelihood "Low" ;
airo:hasSeverity "Medium" .
ex:bias_against_students_with_darker_skin
a airo:Impact ;
airo:hasImpactOnArea vair:RightToNondiscrimination ;
airo:hasImpactOnEntity ex:student ;
airo:hasLikelihood "Low" ;
airo:hasSeverity "Very_High" .
ex:bias_testing
a airo:RiskControl , vair:TestingMeasure ;
airo:eliminatesRiskConcept ex:bias_against_students_with_darker_skin .
ex:alarm_precision_measurement
a dqv:QualityMeasurement ;
dqv:computedOn ex:proctify ;
dqv:isMeasurementOf ex:alarm_precision ;
dqv:value "98"^^xsd:double .
ex:alarm_precision
a dqv:Metric ;
dqv:expectedDataType xsd:double ;
dqv:inDimension ex:accuracy ;
airo:hasDocumentation <http://tinyurl.com/mryhr52m> .
ex:alarm_recall_measurement
a dqv:QualityMeasurement ;
dqv:computedOn ex:proctify ;
dqv:isMeasurementOf ex:alarm_recall ;
dqv:value "90"^^xsd:double .
ex:alarm_reccall
a dqv:Metric ;
dqv:expectedDataType xsd:double ;
dqv:inDimension ex:accuracy ;
airo:hasDocumentation <http://tinyurl.com/mryhr52m> .
ex:alarm_f_score_measurement
a dqv:QualityMeasurement ;
dqv:computedOn ex:proctify ;
dqv:isMeasurementOf ex:alarm_f_score ;
dqv:value "93"^^xsd:double .
ex:alarm_f_score
a dqv:Metric ;
dqv:expectedDataType xsd:double ;
dqv:inDimension ex:accuracy ;
airo:hasDocumentation <http://tinyurl.com/mryhr52m> .
ex:change_of_model
a airo:Change ;
airo:hasChangedEntity ex:susbehaved_model ;
airo:hasPurpose ex:enhance_fairness ;
airo:hasFrequency freq:bimonthly .