Biometric Systems
I18 · Pflichtmodul · Hochschule Darmstadt
URI: http://hr-qde.org/data/koeppe/module_hda_i18_55805a
Lernziele
Mit Mapping zu ESCO-Skills und Provenance-Daten aus der Säule-B-Pipeline.
Unmapped Outcomes
Outcomes, die die Pipeline nicht eindeutig einem ESCO-Skill zuordnen konnte und für Curator-Review markiert sind.
No sufficiently evidenced ESCO skill match was produced by the curated ICT vocabulary. Manual curriculum review is required before competence targeting.
2 Inhalt In this course, several key aspects of biometrics are covered. Lecture: The lecture begins with an overview of applied statistics and hypothesis tests as well as other common statistical tools for biometrics, and then covers selected biometric concepts, particularly fingerprint recognition, vein recog- nition, face recognition and iris recognition.…@de
Voraussetzungen
ESCO-Skills, die das Modul als hrqde:requiresCompetence deklariert.
Berechnungs-Transparenz Vier Cypher-Queries
Vier Cypher-Queries produzieren die obenstehenden Daten. Parameter sind als Literale eingesetzt — direkt kopierbar in den Neo4j-Browser (http://localhost:7474).
1. Modul-Basisdaten
MATCH (m:hrqde__EducationalModule {uri: "http://hr-qde.org/data/koeppe/module_hda_i18_55805a"})
OPTIONAL MATCH (m)-[:hrqde__offeredBy]->(hei:hrqde__HigherEducationInstitution)
RETURN m.uri AS uri,
m.rdfs__label AS label,
m.hrqde__moduleCode AS code,
m.hrqde__ects AS ects,
m.hrqde__moduleType AS moduleType,
hei.uri AS heiUri,
hei.rdfs__label AS heiLabel
2. Lernziele mit ESCO-Mapping
MATCH (m:hrqde__EducationalModule {uri: "http://hr-qde.org/data/koeppe/module_hda_i18_55805a"})
-[:hrqde__hasOutcome]->(o:hrqde__LearningOutcome)
OPTIONAL MATCH (o)-[:hrqde__targetsCompetence]->(skill)
OPTIONAL MATCH (skill)-[:skosxl__prefLabel]->(label:Resource)
OPTIONAL MATCH (o)-[:hrqde__targetLevel]->(level)
WITH o, skill, level,
collect(label.skosxl__literalForm) AS labelForms
RETURN o.uri AS outcomeUri,
o.rdfs__comment AS outcomeText,
o.hrqde__provenanceConfidence AS confidence,
o.hrqde__provenanceSource AS source,
skill.uri AS skillUri,
labelForms AS skillLabels,
level.uri AS levelUri,
level.rdfs__label AS levelLabel
ORDER BY o.uri
3. Unmapped Outcomes
MATCH (m:hrqde__EducationalModule {uri: "http://hr-qde.org/data/koeppe/module_hda_i18_55805a"})
-[:hrqde__hasUnmappedOutcome]->(u:hrqde__UnmappedLearningOutcome)
RETURN u.uri AS uri,
u.rdfs__label AS label,
u.rdfs__comment AS text,
u.hrqde__reviewReason AS reviewReason,
u.hrqde__evidenceExcerpt AS evidence,
u.hrqde__provenanceConfidence AS confidence
ORDER BY u.uri
4. Voraussetzungen
MATCH (m:hrqde__EducationalModule {uri: "http://hr-qde.org/data/koeppe/module_hda_i18_55805a"})
-[:hrqde__requiresCompetence]->(skill)
OPTIONAL MATCH (skill)-[:skosxl__prefLabel]->(label:Resource)
WITH skill, collect(label.skosxl__literalForm) AS labelForms
RETURN skill.uri AS skillUri, labelForms
ORDER BY skill.uri