-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmc-giver.ttl
34 lines (28 loc) · 1.35 KB
/
mc-giver.ttl
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
@prefix : <http://www.ai4eu.eu/ontologies/data#> .
@prefix ai: <http://www.ai4eu.eu/ontologies/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix cso: <https://cso.kmi.open.ac.uk/topics/> .
@base <http://www.ai4eu.eu/ontologies/data> .
:ellogon a owl:NamedIndividual, ai:SoftwareComponent ;
foaf:name "mc-giver"^^xsd:string ;
ai:distributed_as :mc-giver-distro ;
ai:requires :CPU, :GPU ;
dcterms:subject cso:computer_vision ;
ai:keyword "CNN"@en ,
"Visual Document"@en ,
"Classification"@en ;
dcterms:creator :unibo .
:mc-giver-distro: a owl:NamedIndividual, ai:StandAlone ;
ai:language_used <http://dbpedia.org/resource/Python_(language)> .
:CPU a owl:NamedIndividual, ai:ComputationalResource .
:GPU a owl:NamedIndividual, ai:ComputationalResource .
:unibo a owl:NamedIndividual, foaf:Organization ;
foaf:name "University of Bologna"@en ;
foaf:homepage <https://www.unibo.it/en> ;
ai:location <http://dbpedia.org/resource/Italy> .