Skip to content
Snippets Groups Projects
Commit 6e499f9b authored by Aurélien Lamercerie's avatar Aurélien Lamercerie
Browse files

Add AMR graphs in format penman, dot and png (+ stog references in file names)

parent 75473e92
Branches
No related tags found
No related merge requests found
Showing
with 365 additions and 309 deletions
@prefix ns1: <http://amr.isi.edu/rdf/amr-terms#> .
@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
ns2:Concept a rdfs:Class ;
rdfs:label "AMR-Concept" .
ns2:Role a rdfs:Class ;
rdfs:label "AMR-Role" .
<http://amr.isi.edu/amr_data/SSC-01-01#b> a ns3:bind-01 ;
ns3:bind-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
ns3:bind-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s> .
<http://amr.isi.edu/amr_data/SSC-01-01#o2> a ns3:orbit-01 ;
ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
ns1:manner <http://amr.isi.edu/amr_data/SSC-01-01#o3> .
<http://amr.isi.edu/amr_data/SSC-01-01#root01> a ns2:AMR ;
ns2:has-id "SSC-01-01" ;
ns2:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
ns2:root <http://amr.isi.edu/amr_data/SSC-01-01#s> .
ns3:bind-01.ARG0 a ns3:FrameRole .
ns3:bind-01.ARG1 a ns3:FrameRole .
ns3:orbit-01.ARG0 a ns3:FrameRole .
ns3:orbit-01.ARG1 a ns3:FrameRole .
ns1:domain a ns2:Role .
ns1:manner a ns2:Role .
ns1:op1 a ns2:Role .
ns1:op2 a ns2:Role .
ns1:part a ns2:Role .
<http://amr.isi.edu/amr_data/SSC-01-01#a> a ns2:and ;
ns1:op1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
ns1:op2 <http://amr.isi.edu/amr_data/SSC-01-01#o> .
<http://amr.isi.edu/amr_data/SSC-01-01#d> a ns3:direct-02 .
<http://amr.isi.edu/amr_data/SSC-01-01#d2> a ns3:direct-02 ;
ns1:polarity "-" .
<http://amr.isi.edu/amr_data/SSC-01-01#g> a ns1:gravitation .
<http://amr.isi.edu/amr_data/SSC-01-01#o3> a ns2:or ;
ns1:op1 <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
ns1:op2 <http://amr.isi.edu/amr_data/SSC-01-01#d2> .
<http://amr.isi.edu/amr_data/SSC-01-01#p> a <http://amr.isi.edu/entity-types#planet> ;
rdfs:label "Solar System" .
<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity .
ns3:bind-01 a ns2:Frame .
ns3:orbit-01 a ns2:Frame .
ns1:gravitation a ns2:Concept .
ns1:object a ns2:Concept .
ns1:sun a ns2:Concept .
ns1:system a ns2:Concept .
ns2:NamedEntity a ns2:Concept ;
rdfs:label "AMR-EntityType",
"AMR-Term" .
ns2:and a ns2:Concept .
ns2:or a ns2:Concept .
<http://amr.isi.edu/amr_data/SSC-01-01#o> a ns1:object .
<http://amr.isi.edu/amr_data/SSC-01-01#s> a ns1:system ;
ns1:domain <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
ns1:part <http://amr.isi.edu/amr_data/SSC-01-01#a> .
<http://amr.isi.edu/amr_data/SSC-01-01#s2> a ns1:sun .
ns3:direct-02 a ns2:Frame .
ns2:Frame a ns2:Concept ;
rdfs:label "AMR-PropBank-Frame" .
ns3:FrameRole a ns2:Role ;
rdfs:label "AMR-PropBank-Role" .
digraph amr_graph {
rankdir=LR size="12,8"
s [label="s/system" shape=circle]
p [label="p/planet" shape=circle]
n [label="n/name" shape=circle]
b [label="b/bind-01" shape=circle]
g [label="g/gravitation" shape=circle]
a [label="a/and" shape=circle]
s2 [label="s2/sun" shape=circle]
o [label="o/object" shape=circle]
o2 [label="o2/orbit-01" shape=circle]
o3 [label="o3/or" shape=circle]
d [label="d/direct-02" shape=circle]
d2 [label="d2/direct-02" shape=circle]
s -> p [label=":domain"]
p -> n [label=":name"]
s -> b [label=":ARG1-of"]
b -> g [label=":ARG0"]
s -> a [label=":part"]
a -> s2 [label=":op1"]
a -> o [label=":op2"]
o -> o2 [label=":ARG0-of"]
o2 -> s2 [label=":ARG1"]
o2 -> o3 [label=":manner"]
o3 -> d [label=":op1"]
o3 -> d2 [label=":op2"]
node_0 [label="\"Solar\"" shape=rectangle]
n -> node_0 [label=":op1"]
node_1 [label="\"System\"" shape=rectangle]
n -> node_1 [label=":op2"]
node_2 [label="-" shape=rectangle]
d2 -> node_2 [label=":polarity"]
}
<http://amr.isi.edu/rdf/amr-terms#gravitation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-01#b> <http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-01#s> .
<http://amr.isi.edu/amr_data/SSC-01-01#o> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#object> .
<http://amr.isi.edu/amr_data/SSC-01-01#d> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/direct-02> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-EntityType" .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Concept" .
<http://amr.isi.edu/rdf/amr-terms#sun> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-01#p> <http://www.w3.org/2000/01/rdf-schema#label> "Solar System" .
<http://amr.isi.edu/amr_data/SSC-01-01#o2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/orbit-01> .
<http://amr.isi.edu/rdf/amr-terms#object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/amr-terms#system> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-01#root01> <http://amr.isi.edu/rdf/core-amr#has-id> "SSC-01-01" .
<http://amr.isi.edu/amr_data/SSC-01-01#a> <http://amr.isi.edu/rdf/amr-terms#op2> <http://amr.isi.edu/amr_data/SSC-01-01#o> .
<http://amr.isi.edu/rdf/amr-terms#op2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Role" .
<http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG0> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/amr_data/SSC-01-01#d2> <http://amr.isi.edu/rdf/amr-terms#polarity> "-" .
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> . <http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-01#o2> <http://amr.isi.edu/rdf/amr-terms#manner> <http://amr.isi.edu/amr_data/SSC-01-01#o3> . <http://amr.isi.edu/rdf/amr-terms#system> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-01#a> <http://amr.isi.edu/rdf/amr-terms#op1> <http://amr.isi.edu/amr_data/SSC-01-01#s2> .
<http://amr.isi.edu/frames/ld/v1.2.2/bind-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> .
<http://amr.isi.edu/amr_data/SSC-01-01#s> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#system> .
<http://amr.isi.edu/rdf/core-amr#or> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> . <http://amr.isi.edu/rdf/core-amr#or> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/core-amr#and> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> . <http://amr.isi.edu/frames/ld/v1.2.2/bind-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> .
<http://amr.isi.edu/amr_data/SSC-01-01#s> <http://amr.isi.edu/rdf/amr-terms#part> <http://amr.isi.edu/amr_data/SSC-01-01#a> . <http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG0> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> . <http://amr.isi.edu/rdf/amr-terms#gravitation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/amr-terms#domain> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> . <http://amr.isi.edu/rdf/amr-terms#domain> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/amr-terms#op1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> . <http://amr.isi.edu/rdf/amr-terms#part> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-01#b> <http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-01#s> .
<http://amr.isi.edu/amr_data/SSC-01-01#p> <http://www.w3.org/2000/01/rdf-schema#label> "Solar System" .
<http://amr.isi.edu/amr_data/SSC-01-01#a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#and> . <http://amr.isi.edu/amr_data/SSC-01-01#a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#and> .
<http://amr.isi.edu/entity-types#planet> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#NamedEntity> . <http://amr.isi.edu/rdf/amr-terms#manner> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-01#o2> <http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-01#s2> .
<http://amr.isi.edu/amr_data/SSC-01-01#s> <http://amr.isi.edu/rdf/amr-terms#domain> <http://amr.isi.edu/amr_data/SSC-01-01#p> .
<http://amr.isi.edu/amr_data/SSC-01-01#o3> <http://amr.isi.edu/rdf/amr-terms#op2> <http://amr.isi.edu/amr_data/SSC-01-01#d2> .
<http://amr.isi.edu/rdf/amr-terms#op2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-01#b> <http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG0> <http://amr.isi.edu/amr_data/SSC-01-01#g> . <http://amr.isi.edu/amr_data/SSC-01-01#b> <http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG0> <http://amr.isi.edu/amr_data/SSC-01-01#g> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Term" . <http://amr.isi.edu/amr_data/SSC-01-01#s> <http://amr.isi.edu/rdf/amr-terms#part> <http://amr.isi.edu/amr_data/SSC-01-01#a> .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/amr_data/SSC-01-01#d2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/direct-02> . <http://amr.isi.edu/amr_data/SSC-01-01#d2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/direct-02> .
<http://amr.isi.edu/amr_data/SSC-01-01#s> <http://amr.isi.edu/rdf/amr-terms#domain> <http://amr.isi.edu/amr_data/SSC-01-01#p> . <http://amr.isi.edu/rdf/amr-terms#sun> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG0> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> . <http://amr.isi.edu/amr_data/SSC-01-01#s> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#system> .
<http://amr.isi.edu/amr_data/SSC-01-01#o2> <http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-01#s2> . <http://amr.isi.edu/amr_data/SSC-01-01#o2> <http://amr.isi.edu/rdf/amr-terms#manner> <http://amr.isi.edu/amr_data/SSC-01-01#o3> .
<http://amr.isi.edu/amr_data/SSC-01-01#b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/bind-01> . <http://amr.isi.edu/entity-types#planet> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#NamedEntity> .
<http://amr.isi.edu/amr_data/SSC-01-01#root01> <http://amr.isi.edu/rdf/core-amr#root> <http://amr.isi.edu/amr_data/SSC-01-01#s> .
<http://amr.isi.edu/rdf/amr-terms#manner> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/amr-terms#part> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-01#p> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/entity-types#planet> .
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Frame" . <http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Frame" .
<http://amr.isi.edu/frames/ld/v1.2.2/orbit-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> .
<http://amr.isi.edu/amr_data/SSC-01-01#root01> <http://amr.isi.edu/rdf/core-amr#has-id> "SSC-01-01" .
<http://amr.isi.edu/amr_data/SSC-01-01#g> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#gravitation> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-01#o2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/orbit-01> .
<http://amr.isi.edu/amr_data/SSC-01-01#o> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#object> .
<http://amr.isi.edu/rdf/amr-terms#op1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-01#root01> <http://amr.isi.edu/rdf/core-amr#root> <http://amr.isi.edu/amr_data/SSC-01-01#s> .
<http://amr.isi.edu/amr_data/SSC-01-01#o3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#or> . <http://amr.isi.edu/amr_data/SSC-01-01#o3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#or> .
<http://amr.isi.edu/amr_data/SSC-01-01#a> <http://amr.isi.edu/rdf/amr-terms#op1> <http://amr.isi.edu/amr_data/SSC-01-01#s2> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Role" .
<http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG0> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/rdf/amr-terms#object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-01#d> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/direct-02> .
<http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> . <http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-EntityType" .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Term" .
<http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/amr_data/SSC-01-01#o3> <http://amr.isi.edu/rdf/amr-terms#op1> <http://amr.isi.edu/amr_data/SSC-01-01#d> . <http://amr.isi.edu/amr_data/SSC-01-01#o3> <http://amr.isi.edu/rdf/amr-terms#op1> <http://amr.isi.edu/amr_data/SSC-01-01#d> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Role" . <http://amr.isi.edu/amr_data/SSC-01-01#p> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/entity-types#planet> .
<http://amr.isi.edu/amr_data/SSC-01-01#o3> <http://amr.isi.edu/rdf/amr-terms#op2> <http://amr.isi.edu/amr_data/SSC-01-01#d2> . <http://amr.isi.edu/rdf/core-amr#and> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-01#g> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#gravitation> . <http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Concept" .
<http://amr.isi.edu/amr_data/SSC-01-01#s2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#sun> . <http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-01#root01> <http://amr.isi.edu/rdf/core-amr#has-sentence> "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." . <http://amr.isi.edu/amr_data/SSC-01-01#root01> <http://amr.isi.edu/rdf/core-amr#has-sentence> "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
<http://amr.isi.edu/amr_data/SSC-01-01#o2> <http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG0> <http://amr.isi.edu/amr_data/SSC-01-01#o> . <http://amr.isi.edu/amr_data/SSC-01-01#o2> <http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG0> <http://amr.isi.edu/amr_data/SSC-01-01#o> .
<http://amr.isi.edu/frames/ld/v1.2.2/direct-02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> . <http://amr.isi.edu/amr_data/SSC-01-01#b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/bind-01> .
<http://amr.isi.edu/amr_data/SSC-01-01#a> <http://amr.isi.edu/rdf/amr-terms#op2> <http://amr.isi.edu/amr_data/SSC-01-01#o> .
<http://amr.isi.edu/amr_data/SSC-01-01#root01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#AMR> . <http://amr.isi.edu/amr_data/SSC-01-01#root01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#AMR> .
<http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> . <http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/frames/ld/v1.2.2/orbit-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> . <http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/amr_data/SSC-01-01#s2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#sun> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Role" .
<http://amr.isi.edu/frames/ld/v1.2.2/direct-02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> .
<http://amr.isi.edu/amr_data/SSC-01-01#d2> <http://amr.isi.edu/rdf/amr-terms#polarity> "-" .
data/SSC-01/SSC-01-01/SSC-01-01.stog.amr.png

69.7 KiB

digraph amr_graph {
rankdir=LR size="12,8"
s [label="s/system" shape=circle]
p [label="p/planet" shape=circle]
a [label="a/and" shape=circle]
s2 [label="s2/star" shape=circle]
p2 [label="p2/planet" shape=circle]
n [label="n/name" shape=circle]
s -> p [label=":mod"]
s -> a [label=":consist-of"]
a -> s2 [label=":op1"]
a -> p2 [label=":op2"]
s -> s [label=":domain"]
s -> n [label=":name"]
node_0 [label=8 shape=rectangle]
p2 -> node_0 [label=":quant"]
node_1 [label="\"Solar\"" shape=rectangle]
n -> node_1 [label=":op1"]
node_2 [label="\"System\"" shape=rectangle]
n -> node_2 [label=":op2"]
}
<http://amr.isi.edu/amr_data/SSC-01-02#s2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/entity-types#star> . <http://amr.isi.edu/amr_data/SSC-01-02#p> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/entity-types#planet> .
<http://amr.isi.edu/amr_data/SSC-01-02#a> <http://amr.isi.edu/rdf/amr-terms#op1> <http://amr.isi.edu/amr_data/SSC-01-02#s2> . <http://amr.isi.edu/rdf/amr-terms#op2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-02#s> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#system> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-EntityType" . <http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-EntityType" .
<http://amr.isi.edu/rdf/amr-terms#system> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> . <http://amr.isi.edu/amr_data/SSC-01-02#a> <http://amr.isi.edu/rdf/amr-terms#op1> <http://amr.isi.edu/amr_data/SSC-01-02#s2> .
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Role" .
<http://amr.isi.edu/amr_data/SSC-01-02#p2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/entity-types#planet> .
<http://amr.isi.edu/amr_data/SSC-01-02#s> <http://amr.isi.edu/rdf/amr-terms#mod> <http://amr.isi.edu/amr_data/SSC-01-02#p> .
<http://amr.isi.edu/amr_data/SSC-01-02#p2> <http://amr.isi.edu/rdf/amr-terms#quant> "8" . <http://amr.isi.edu/amr_data/SSC-01-02#p2> <http://amr.isi.edu/rdf/amr-terms#quant> "8" .
<http://amr.isi.edu/amr_data/SSC-01-02#p> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/entity-types#planet> . <http://amr.isi.edu/rdf/amr-terms#mod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Concept" . <http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Role" .
<http://amr.isi.edu/amr_data/SSC-01-02#root01> <http://amr.isi.edu/rdf/core-amr#has-id> "SSC-01-02" .
<http://amr.isi.edu/rdf/amr-terms#consist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Frame" . <http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Frame" .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/amr_data/SSC-01-02#root01> <http://amr.isi.edu/rdf/core-amr#root> <http://amr.isi.edu/amr_data/SSC-01-02#s> .
<http://amr.isi.edu/entity-types#planet> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#NamedEntity> . <http://amr.isi.edu/entity-types#planet> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#NamedEntity> .
<http://amr.isi.edu/rdf/amr-terms#consist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-02#s> <http://www.w3.org/2000/01/rdf-schema#label> "Solar System" .
<http://amr.isi.edu/amr_data/SSC-01-02#a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#and> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-02#a> <http://amr.isi.edu/rdf/amr-terms#op2> <http://amr.isi.edu/amr_data/SSC-01-02#p2> .
<http://amr.isi.edu/amr_data/SSC-01-02#root01> <http://amr.isi.edu/rdf/core-amr#has-sentence> "The Solar System is a planetary system consisting of a star and eight planets." .
<http://amr.isi.edu/rdf/amr-terms#op2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-02#a> <http://amr.isi.edu/rdf/amr-terms#consist> <http://amr.isi.edu/amr_data/SSC-01-02#s> . <http://amr.isi.edu/amr_data/SSC-01-02#a> <http://amr.isi.edu/rdf/amr-terms#consist> <http://amr.isi.edu/amr_data/SSC-01-02#s> .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> . <http://amr.isi.edu/amr_data/SSC-01-02#a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#and> .
<http://amr.isi.edu/rdf/core-amr#and> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-02#root01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#AMR> .
<http://amr.isi.edu/rdf/amr-terms#mod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> . <http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> . <http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Role" . <http://amr.isi.edu/amr_data/SSC-01-02#root01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#AMR> .
<http://amr.isi.edu/amr_data/SSC-01-02#root01> <http://amr.isi.edu/rdf/core-amr#root> <http://amr.isi.edu/amr_data/SSC-01-02#s> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Term" . <http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Term" .
<http://amr.isi.edu/amr_data/SSC-01-02#s> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#system> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Role" .
<http://amr.isi.edu/rdf/core-amr#and> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-02#p2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/entity-types#planet> .
<http://amr.isi.edu/entity-types#star> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#NamedEntity> . <http://amr.isi.edu/entity-types#star> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#NamedEntity> .
<http://amr.isi.edu/amr_data/SSC-01-02#root01> <http://amr.isi.edu/rdf/core-amr#has-id> "SSC-01-02" . <http://amr.isi.edu/amr_data/SSC-01-02#s> <http://amr.isi.edu/rdf/amr-terms#mod> <http://amr.isi.edu/amr_data/SSC-01-02#p> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Concept" .
<http://amr.isi.edu/rdf/amr-terms#system> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-02#root01> <http://amr.isi.edu/rdf/core-amr#has-sentence> "The Solar System is a planetary system consisting of a star and eight planets." .
<http://amr.isi.edu/amr_data/SSC-01-02#a> <http://amr.isi.edu/rdf/amr-terms#op2> <http://amr.isi.edu/amr_data/SSC-01-02#p2> .
<http://amr.isi.edu/rdf/amr-terms#op1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> . <http://amr.isi.edu/rdf/amr-terms#op1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-02#s2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/entity-types#star> .
<http://amr.isi.edu/amr_data/SSC-01-02#s> <http://www.w3.org/2000/01/rdf-schema#label> "Solar System" .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
data/SSC-01/SSC-01-02/SSC-01-02.stog.amr.png

63 KiB

@prefix ns1: <http://amr.isi.edu/rdf/amr-terms#> . @prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> . @prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
ns2:Concept a rdfs:Class ; ns1:Concept a rdfs:Class ;
rdfs:label "AMR-Concept" . rdfs:label "AMR-Concept" .
ns2:Role a rdfs:Class ; ns1:Role a rdfs:Class ;
rdfs:label "AMR-Role" . rdfs:label "AMR-Role" .
<http://amr.isi.edu/amr_data/SSC-01-02#a> a ns2:and ; <http://amr.isi.edu/amr_data/SSC-01-02#a> a ns1:and ;
ns1:consist <http://amr.isi.edu/amr_data/SSC-01-02#s> ; ns2:consist <http://amr.isi.edu/amr_data/SSC-01-02#s> ;
ns1:op1 <http://amr.isi.edu/amr_data/SSC-01-02#s2> ; ns2:op1 <http://amr.isi.edu/amr_data/SSC-01-02#s2> ;
ns1:op2 <http://amr.isi.edu/amr_data/SSC-01-02#p2> . ns2:op2 <http://amr.isi.edu/amr_data/SSC-01-02#p2> .
<http://amr.isi.edu/amr_data/SSC-01-02#root01> a ns2:AMR ; <http://amr.isi.edu/amr_data/SSC-01-02#root01> a ns1:AMR ;
ns2:has-id "SSC-01-02" ; ns1:has-id "SSC-01-02" ;
ns2:has-sentence "The Solar System is a planetary system consisting of a star and eight planets." ; ns1:has-sentence "The Solar System is a planetary system consisting of a star and eight planets." ;
ns2:root <http://amr.isi.edu/amr_data/SSC-01-02#s> . ns1:root <http://amr.isi.edu/amr_data/SSC-01-02#s> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> a ns2:Role ; <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> a ns1:Role ;
rdfs:label "AMR-PropBank-Role" . rdfs:label "AMR-PropBank-Role" .
ns1:consist a ns2:Role . ns2:consist a ns1:Role .
ns1:mod a ns2:Role . ns2:mod a ns1:Role .
ns1:op1 a ns2:Role . ns2:op1 a ns1:Role .
ns1:op2 a ns2:Role . ns2:op2 a ns1:Role .
ns2:Frame a ns2:Concept ; ns1:Frame a ns1:Concept ;
rdfs:label "AMR-PropBank-Frame" . rdfs:label "AMR-PropBank-Frame" .
<http://amr.isi.edu/amr_data/SSC-01-02#p> a <http://amr.isi.edu/entity-types#planet> . <http://amr.isi.edu/amr_data/SSC-01-02#p> a <http://amr.isi.edu/entity-types#planet> .
<http://amr.isi.edu/amr_data/SSC-01-02#p2> a <http://amr.isi.edu/entity-types#planet> ; <http://amr.isi.edu/amr_data/SSC-01-02#p2> a <http://amr.isi.edu/entity-types#planet> ;
ns1:quant "8" . ns2:quant "8" .
<http://amr.isi.edu/amr_data/SSC-01-02#s2> a <http://amr.isi.edu/entity-types#star> . <http://amr.isi.edu/amr_data/SSC-01-02#s2> a <http://amr.isi.edu/entity-types#star> .
<http://amr.isi.edu/entity-types#star> a ns2:NamedEntity . <http://amr.isi.edu/entity-types#star> a ns1:NamedEntity .
ns1:system a ns2:Concept . ns2:system a ns1:Concept .
ns2:and a ns2:Concept . ns1:and a ns1:Concept .
<http://amr.isi.edu/amr_data/SSC-01-02#s> a ns1:system ; <http://amr.isi.edu/amr_data/SSC-01-02#s> a ns2:system ;
rdfs:label "Solar System" ; rdfs:label "Solar System" ;
ns1:mod <http://amr.isi.edu/amr_data/SSC-01-02#p> . ns2:mod <http://amr.isi.edu/amr_data/SSC-01-02#p> .
<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity . <http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity .
ns2:NamedEntity a ns2:Concept ; ns1:NamedEntity a ns1:Concept ;
rdfs:label "AMR-EntityType", rdfs:label "AMR-EntityType",
"AMR-Term" . "AMR-Term" .
@prefix ns1: <http://amr.isi.edu/frames/ld/v1.2.2/> .
@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
ns3:Concept a rdfs:Class ;
rdfs:label "AMR-Concept" .
ns3:Role a rdfs:Class ;
rdfs:label "AMR-Role" .
<http://amr.isi.edu/amr_data/SSC-01-03#r> a ns1:revolve-01 ;
ns1:revolve-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-03#o> ;
ns1:revolve-01.ARG2 <http://amr.isi.edu/amr_data/SSC-01-03#s> .
<http://amr.isi.edu/amr_data/SSC-01-03#root01> a ns3:AMR ;
ns3:has-id "SSC-01-03" ;
ns3:has-sentence "The solar system is formed by the Sun and by other celestial objects that revolve around it." ;
ns3:root <http://amr.isi.edu/amr_data/SSC-01-03#f> .
ns1:form-01.ARG0 a ns1:FrameRole .
ns1:form-01.ARG1 a ns1:FrameRole .
ns1:revolve-01.ARG1 a ns1:FrameRole .
ns1:revolve-01.ARG2 a ns1:FrameRole .
ns2:mod a ns3:Role .
ns2:op1 a ns3:Role .
ns2:op2 a ns3:Role .
ns3:NamedEntity a ns3:Concept ;
rdfs:label "AMR-EntityType",
"AMR-Term" .
<http://amr.isi.edu/amr_data/SSC-01-03#a> a ns3:and ;
ns2:op1 <http://amr.isi.edu/amr_data/SSC-01-03#s> ;
ns2:op2 <http://amr.isi.edu/amr_data/SSC-01-03#o> .
<http://amr.isi.edu/amr_data/SSC-01-03#c> a ns2:celestial .
<http://amr.isi.edu/amr_data/SSC-01-03#f> a ns1:form-01 ;
ns1:form-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-03#a> ;
ns1:form-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-03#s2> .
<http://amr.isi.edu/amr_data/SSC-01-03#o2> a ns2:other .
<http://amr.isi.edu/amr_data/SSC-01-03#s2> a ns2:system ;
ns2:mod <http://amr.isi.edu/amr_data/SSC-01-03#s> .
ns1:form-01 a ns3:Frame .
ns1:revolve-01 a ns3:Frame .
ns2:celestial a ns3:Concept .
ns2:object a ns3:Concept .
ns2:other a ns3:Concept .
ns2:sun a ns3:Concept .
ns2:system a ns3:Concept .
ns3:and a ns3:Concept .
<http://amr.isi.edu/amr_data/SSC-01-03#o> a ns2:object ;
ns2:mod <http://amr.isi.edu/amr_data/SSC-01-03#c>,
<http://amr.isi.edu/amr_data/SSC-01-03#o2> .
ns3:Frame a ns3:Concept ;
rdfs:label "AMR-PropBank-Frame" .
<http://amr.isi.edu/amr_data/SSC-01-03#s> a ns2:sun .
ns1:FrameRole a ns3:Role ;
rdfs:label "AMR-PropBank-Role" .
digraph amr_graph {
rankdir=LR size="12,8"
f [label="f/form-01" shape=circle]
a [label="a/and" shape=circle]
s [label="s/sun" shape=circle]
o [label="o/object" shape=circle]
o2 [label="o2/other" shape=circle]
c [label="c/celestial" shape=circle]
r [label="r/revolve-01" shape=circle]
s2 [label="s2/system" shape=circle]
f -> a [label=":ARG0"]
a -> s [label=":op1"]
a -> o [label=":op2"]
o -> o2 [label=":mod"]
o -> c [label=":mod"]
o -> r [label=":ARG1-of"]
r -> s [label=":ARG2"]
f -> s2 [label=":ARG1"]
s2 -> s [label=":mod"]
}
<http://amr.isi.edu/amr_data/SSC-01-03#a> <http://amr.isi.edu/rdf/amr-terms#op2> <http://amr.isi.edu/amr_data/SSC-01-03#o> . <http://amr.isi.edu/rdf/amr-terms#celestial> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Role" . <http://amr.isi.edu/amr_data/SSC-01-03#s2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#system> .
<http://amr.isi.edu/amr_data/SSC-01-03#r> <http://amr.isi.edu/frames/ld/v1.2.2/revolve-01.ARG2> <http://amr.isi.edu/amr_data/SSC-01-03#s> .
<http://amr.isi.edu/rdf/amr-terms#system> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-03#f> <http://amr.isi.edu/frames/ld/v1.2.2/form-01.ARG0> <http://amr.isi.edu/amr_data/SSC-01-03#a> . <http://amr.isi.edu/amr_data/SSC-01-03#f> <http://amr.isi.edu/frames/ld/v1.2.2/form-01.ARG0> <http://amr.isi.edu/amr_data/SSC-01-03#a> .
<http://amr.isi.edu/rdf/amr-terms#op2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/amr-terms#object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-03#o> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#object> .
<http://amr.isi.edu/amr_data/SSC-01-03#root01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#AMR> .
<http://amr.isi.edu/frames/ld/v1.2.2/form-01.ARG1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> . <http://amr.isi.edu/frames/ld/v1.2.2/form-01.ARG1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/rdf/amr-terms#celestial> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> . <http://amr.isi.edu/amr_data/SSC-01-03#o> <http://amr.isi.edu/rdf/amr-terms#mod> <http://amr.isi.edu/amr_data/SSC-01-03#c> .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> . <http://amr.isi.edu/amr_data/SSC-01-03#s> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#sun> .
<http://amr.isi.edu/amr_data/SSC-01-03#root01> <http://amr.isi.edu/rdf/core-amr#has-id> "SSC-01-03" .
<http://amr.isi.edu/amr_data/SSC-01-03#c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#celestial> .
<http://amr.isi.edu/amr_data/SSC-01-03#root01> <http://amr.isi.edu/rdf/core-amr#has-sentence> "The solar system is formed by the Sun and by other celestial objects that revolve around it." .
<http://amr.isi.edu/rdf/amr-terms#sun> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-03#f> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/form-01> .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Concept" . <http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Concept" .
<http://amr.isi.edu/frames/ld/v1.2.2/revolve-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> . <http://amr.isi.edu/amr_data/SSC-01-03#s2> <http://amr.isi.edu/rdf/amr-terms#mod> <http://amr.isi.edu/amr_data/SSC-01-03#s> .
<http://amr.isi.edu/frames/ld/v1.2.2/revolve-01.ARG1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> . <http://amr.isi.edu/frames/ld/v1.2.2/revolve-01.ARG1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/amr_data/SSC-01-03#o> <http://amr.isi.edu/rdf/amr-terms#mod> <http://amr.isi.edu/amr_data/SSC-01-03#c> . <http://amr.isi.edu/amr_data/SSC-01-03#a> <http://amr.isi.edu/rdf/amr-terms#op2> <http://amr.isi.edu/amr_data/SSC-01-03#o> .
<http://amr.isi.edu/rdf/amr-terms#op1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-03#a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#and> . <http://amr.isi.edu/amr_data/SSC-01-03#a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#and> .
<http://amr.isi.edu/rdf/amr-terms#mod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/core-amr#and> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/amr-terms#object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-03#s2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#system> .
<http://amr.isi.edu/amr_data/SSC-01-03#r> <http://amr.isi.edu/frames/ld/v1.2.2/revolve-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-03#o> . <http://amr.isi.edu/amr_data/SSC-01-03#r> <http://amr.isi.edu/frames/ld/v1.2.2/revolve-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-03#o> .
<http://amr.isi.edu/amr_data/SSC-01-03#o2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#other> . <http://amr.isi.edu/amr_data/SSC-01-03#root01> <http://amr.isi.edu/rdf/core-amr#root> <http://amr.isi.edu/amr_data/SSC-01-03#f> .
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Frame" . <http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-EntityType" .
<http://amr.isi.edu/amr_data/SSC-01-03#o> <http://amr.isi.edu/rdf/amr-terms#mod> <http://amr.isi.edu/amr_data/SSC-01-03#o2> . <http://amr.isi.edu/frames/ld/v1.2.2/revolve-01.ARG2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/rdf/amr-terms#other> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> . <http://amr.isi.edu/rdf/amr-terms#other> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Term" . <http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Term" .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Role" .
<http://amr.isi.edu/rdf/amr-terms#sun> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-03#f> <http://amr.isi.edu/frames/ld/v1.2.2/form-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-03#s2> . <http://amr.isi.edu/amr_data/SSC-01-03#f> <http://amr.isi.edu/frames/ld/v1.2.2/form-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-03#s2> .
<http://amr.isi.edu/amr_data/SSC-01-03#s2> <http://amr.isi.edu/rdf/amr-terms#mod> <http://amr.isi.edu/amr_data/SSC-01-03#s> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-EntityType" .
<http://amr.isi.edu/frames/ld/v1.2.2/form-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> .
<http://amr.isi.edu/amr_data/SSC-01-03#f> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/form-01> .
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-03#root01> <http://amr.isi.edu/rdf/core-amr#has-sentence> "The solar system is formed by the Sun and by other celestial objects that revolve around it." .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/amr-terms#op1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-03#r> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/revolve-01> . <http://amr.isi.edu/amr_data/SSC-01-03#r> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/revolve-01> .
<http://amr.isi.edu/amr_data/SSC-01-03#a> <http://amr.isi.edu/rdf/amr-terms#op1> <http://amr.isi.edu/amr_data/SSC-01-03#s> . <http://amr.isi.edu/rdf/amr-terms#mod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-03#c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#celestial> . <http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/frames/ld/v1.2.2/revolve-01.ARG2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/amr_data/SSC-01-03#root01> <http://amr.isi.edu/rdf/core-amr#root> <http://amr.isi.edu/amr_data/SSC-01-03#f> .
<http://amr.isi.edu/amr_data/SSC-01-03#root01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#AMR> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> . <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-03#root01> <http://amr.isi.edu/rdf/core-amr#has-id> "SSC-01-03" . <http://amr.isi.edu/amr_data/SSC-01-03#o2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#other> .
<http://amr.isi.edu/amr_data/SSC-01-03#s> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#sun> . <http://amr.isi.edu/frames/ld/v1.2.2/form-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> .
<http://amr.isi.edu/rdf/amr-terms#op2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> . <http://amr.isi.edu/rdf/amr-terms#system> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-03#o> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#object> .
<http://amr.isi.edu/frames/ld/v1.2.2/form-01.ARG0> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> . <http://amr.isi.edu/frames/ld/v1.2.2/form-01.ARG0> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/amr_data/SSC-01-03#o> <http://amr.isi.edu/rdf/amr-terms#mod> <http://amr.isi.edu/amr_data/SSC-01-03#o2> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Role" .
<http://amr.isi.edu/rdf/core-amr#and> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-03#r> <http://amr.isi.edu/frames/ld/v1.2.2/revolve-01.ARG2> <http://amr.isi.edu/amr_data/SSC-01-03#s> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Role" .
<http://amr.isi.edu/frames/ld/v1.2.2/revolve-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> .
<http://amr.isi.edu/amr_data/SSC-01-03#a> <http://amr.isi.edu/rdf/amr-terms#op1> <http://amr.isi.edu/amr_data/SSC-01-03#s> .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Frame" .
data/SSC-01/SSC-01-03/SSC-01-03.stog.amr.png

81.6 KiB

@prefix ns1: <http://amr.isi.edu/rdf/amr-terms#> .
@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
ns2:Concept a rdfs:Class ;
rdfs:label "AMR-Concept" .
ns2:Role a rdfs:Class ;
rdfs:label "AMR-Role" .
<http://amr.isi.edu/amr_data/SSC-01-03#r> a ns3:revolve-01 ;
ns3:revolve-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-03#o> ;
ns3:revolve-01.ARG2 <http://amr.isi.edu/amr_data/SSC-01-03#s> .
<http://amr.isi.edu/amr_data/SSC-01-03#root01> a ns2:AMR ;
ns2:has-id "SSC-01-03" ;
ns2:has-sentence "The solar system is formed by the Sun and by other celestial objects that revolve around it." ;
ns2:root <http://amr.isi.edu/amr_data/SSC-01-03#f> .
ns3:form-01.ARG0 a ns3:FrameRole .
ns3:form-01.ARG1 a ns3:FrameRole .
ns3:revolve-01.ARG1 a ns3:FrameRole .
ns3:revolve-01.ARG2 a ns3:FrameRole .
ns1:mod a ns2:Role .
ns1:op1 a ns2:Role .
ns1:op2 a ns2:Role .
ns2:NamedEntity a ns2:Concept ;
rdfs:label "AMR-EntityType",
"AMR-Term" .
<http://amr.isi.edu/amr_data/SSC-01-03#a> a ns2:and ;
ns1:op1 <http://amr.isi.edu/amr_data/SSC-01-03#s> ;
ns1:op2 <http://amr.isi.edu/amr_data/SSC-01-03#o> .
<http://amr.isi.edu/amr_data/SSC-01-03#c> a ns1:celestial .
<http://amr.isi.edu/amr_data/SSC-01-03#f> a ns3:form-01 ;
ns3:form-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-03#a> ;
ns3:form-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-03#s2> .
<http://amr.isi.edu/amr_data/SSC-01-03#o2> a ns1:other .
<http://amr.isi.edu/amr_data/SSC-01-03#s2> a ns1:system ;
ns1:mod <http://amr.isi.edu/amr_data/SSC-01-03#s> .
ns3:form-01 a ns2:Frame .
ns3:revolve-01 a ns2:Frame .
ns1:celestial a ns2:Concept .
ns1:object a ns2:Concept .
ns1:other a ns2:Concept .
ns1:sun a ns2:Concept .
ns1:system a ns2:Concept .
ns2:and a ns2:Concept .
<http://amr.isi.edu/amr_data/SSC-01-03#o> a ns1:object ;
ns1:mod <http://amr.isi.edu/amr_data/SSC-01-03#c>,
<http://amr.isi.edu/amr_data/SSC-01-03#o2> .
ns2:Frame a ns2:Concept ;
rdfs:label "AMR-PropBank-Frame" .
<http://amr.isi.edu/amr_data/SSC-01-03#s> a ns1:sun .
ns3:FrameRole a ns2:Role ;
rdfs:label "AMR-PropBank-Role" .
digraph amr_graph {
rankdir=LR size="12,8"
n [label="n/name-01" shape=circle]
s [label="s/system" shape=circle]
p [label="p/planet" shape=circle]
n2 [label="n2/name" shape=circle]
w [label="w/we" shape=circle]
s2 [label="s2/system" shape=circle]
n3 [label="n3/name" shape=circle]
n -> s [label=":ARG1"]
s -> p [label=":mod"]
p -> n2 [label=":name"]
s -> w [label=":poss"]
n -> s2 [label=":ARG2"]
s2 -> n3 [label=":name"]
node_0 [label="\"Earth\"" shape=rectangle]
n2 -> node_0 [label=":op1"]
node_1 [label="\"The\"" shape=rectangle]
n3 -> node_1 [label=":op1"]
node_2 [label="\"Solar\"" shape=rectangle]
n3 -> node_2 [label=":op2"]
node_3 [label="\"System\"" shape=rectangle]
n3 -> node_3 [label=":op3"]
}
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Frame" . <http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Role" .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Concept" .
<http://amr.isi.edu/frames/ld/v1.2.2/name-01.ARG1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/frames/ld/v1.2.2/name-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> .
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-04#n> <http://amr.isi.edu/frames/ld/v1.2.2/name-01.ARG2> <http://amr.isi.edu/amr_data/SSC-01-04#s2> .
<http://amr.isi.edu/rdf/amr-terms#poss> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/amr_data/SSC-01-04#root01> <http://amr.isi.edu/rdf/core-amr#has-sentence> "The Solar System is the name given to our planetary system." .
<http://amr.isi.edu/amr_data/SSC-01-04#s2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#system> .
<http://amr.isi.edu/entity-types#planet> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#NamedEntity> .
<http://amr.isi.edu/rdf/amr-terms#system> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Term" . <http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Term" .
<http://amr.isi.edu/amr_data/SSC-01-04#p> <http://www.w3.org/2000/01/rdf-schema#label> "Earth" . <http://amr.isi.edu/frames/ld/v1.2.2/name-01.ARG2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-EntityType" .
<http://amr.isi.edu/amr_data/SSC-01-04#n> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/name-01> . <http://amr.isi.edu/amr_data/SSC-01-04#n> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/name-01> .
<http://amr.isi.edu/amr_data/SSC-01-04#root01> <http://amr.isi.edu/rdf/core-amr#root> <http://amr.isi.edu/amr_data/SSC-01-04#n> .
<http://amr.isi.edu/entity-types#planet> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#NamedEntity> .
<http://amr.isi.edu/amr_data/SSC-01-04#root01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#AMR> .
<http://amr.isi.edu/frames/ld/v1.2.2/name-01.ARG1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/amr-terms#mod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-EntityType" .
<http://amr.isi.edu/amr_data/SSC-01-04#n> <http://amr.isi.edu/frames/ld/v1.2.2/name-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-04#s> .
<http://amr.isi.edu/amr_data/SSC-01-04#w> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#we> . <http://amr.isi.edu/amr_data/SSC-01-04#w> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#we> .
<http://amr.isi.edu/amr_data/SSC-01-04#s> <http://amr.isi.edu/rdf/amr-terms#mod> <http://amr.isi.edu/amr_data/SSC-01-04#p> . <http://amr.isi.edu/amr_data/SSC-01-04#s> <http://amr.isi.edu/rdf/amr-terms#mod> <http://amr.isi.edu/amr_data/SSC-01-04#p> .
<http://amr.isi.edu/frames/ld/v1.2.2/name-01.ARG2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> .
<http://amr.isi.edu/amr_data/SSC-01-04#p> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/entity-types#planet> .
<http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Role" .
<http://amr.isi.edu/amr_data/SSC-01-04#s> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#system> . <http://amr.isi.edu/amr_data/SSC-01-04#s> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#system> .
<http://amr.isi.edu/amr_data/SSC-01-04#root01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#AMR> . <http://amr.isi.edu/amr_data/SSC-01-04#root01> <http://amr.isi.edu/rdf/core-amr#has-id> "SSC-01-04" .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> . <http://amr.isi.edu/rdf/amr-terms#poss> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Frame" .
<http://amr.isi.edu/frames/ld/v1.2.2/name-01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Frame> .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-Concept" .
<http://amr.isi.edu/amr_data/SSC-01-04#s> <http://amr.isi.edu/rdf/amr-terms#poss> <http://amr.isi.edu/amr_data/SSC-01-04#w> . <http://amr.isi.edu/amr_data/SSC-01-04#s> <http://amr.isi.edu/rdf/amr-terms#poss> <http://amr.isi.edu/amr_data/SSC-01-04#w> .
<http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Role" . <http://amr.isi.edu/frames/ld/v1.2.2/FrameRole> <http://www.w3.org/2000/01/rdf-schema#label> "AMR-PropBank-Role" .
<http://amr.isi.edu/amr_data/SSC-01-04#n> <http://amr.isi.edu/frames/ld/v1.2.2/name-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-04#s> .
<http://amr.isi.edu/rdf/amr-terms#we> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> . <http://amr.isi.edu/rdf/amr-terms#we> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-04#s2> <http://www.w3.org/2000/01/rdf-schema#label> "The Solar System" . <http://amr.isi.edu/amr_data/SSC-01-04#s2> <http://www.w3.org/2000/01/rdf-schema#label> "The Solar System" .
<http://amr.isi.edu/rdf/core-amr#Concept> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> . <http://amr.isi.edu/amr_data/SSC-01-04#s2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/amr-terms#system> .
<http://amr.isi.edu/amr_data/SSC-01-04#p> <http://www.w3.org/2000/01/rdf-schema#label> "Earth" .
<http://amr.isi.edu/amr_data/SSC-01-04#root01> <http://amr.isi.edu/rdf/core-amr#has-sentence> "The Solar System is the name given to our planetary system." .
<http://amr.isi.edu/rdf/core-amr#Frame> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-04#p> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/entity-types#planet> .
<http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> . <http://amr.isi.edu/rdf/core-amr#NamedEntity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-04#root01> <http://amr.isi.edu/rdf/core-amr#root> <http://amr.isi.edu/amr_data/SSC-01-04#n> . <http://amr.isi.edu/rdf/core-amr#Role> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
<http://amr.isi.edu/rdf/amr-terms#mod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Role> . <http://amr.isi.edu/rdf/amr-terms#system> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://amr.isi.edu/rdf/core-amr#Concept> .
<http://amr.isi.edu/amr_data/SSC-01-04#root01> <http://amr.isi.edu/rdf/core-amr#has-id> "SSC-01-04" . <http://amr.isi.edu/amr_data/SSC-01-04#n> <http://amr.isi.edu/frames/ld/v1.2.2/name-01.ARG2> <http://amr.isi.edu/amr_data/SSC-01-04#s2> .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment