Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
sefarad
dashboard-gsicrawler
Commits
83fda57d
Commit
83fda57d
authored
Oct 06, 2017
by
militarpancho
Browse files
Added queries and gitlab-ci
parent
46726ce8
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
83fda57d
variables
:
LUIGI_IMAGE
:
$CI_REGISTRY_IMAGE/luigi
WEB_IMAGE
:
$CI_REGISTRY_IMAGE/web
before_script
:
-
make -e login
stages
:
-
build
-
push
-
deploy
build-luigi
:
stage
:
build
script
:
-
make -e build-luigi
build-web
:
stage
:
build
script
:
-
make -e build-web
push-web
:
stage
:
push
script
:
-
make -e push-web
push-luigi
:
stage
:
push
script
:
-
make -e push-luigi
deploy
:
stage
:
deploy
environment
:
test
script
:
-
make -e deploy
only
:
-
master
queries.json
View file @
83fda57d
[{
"name"
:
"Show me news about Terrorism in Spain"
,
"val"
:
"PREFIX schema: <http://schema.org/>
\n
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
\n
PREFIX me: <http://www.mixedemotions-project.eu/ns/model#>
\n
PREFIX onyx: <http://www.gsi.dit.upm.es/ontologies/onyx/ns#>
\n
PREFIX wnaffect: <http://www.gsi.dit.upm.es/ontologies/wnaffect/ns#>
\n
PREFIX dbps: <http://www.openlinksw.com/schemas/dbpedia-spotlight#>
\n
PREFIX dbr: <http://dbpedia.org/resource/>
\n
PREFIX dbo: <http://dbpedia.org/ontology/>
\n
PREFIX db: <http://dbpedia.org/>
\n\n
SELECT DISTINCT ?headline ?entity
\n
WHERE {
\n
?article a schema:NewsArticle .
\n
?article schema:headline ?headline .
\n
?article me:hasEntities ?entities .
\n
?entities dbps:anyURI ?entity .
\n
?entities dbps:anyURI dbr:Spain
\n
\n
}
\n
LIMIT"
},{
"name"
:
"Show news about ISIS"
,
"val"
:
"PREFIX schema: <http://schema.org/>
\n
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
\n
PREFIX me: <http://www.mixedemotions-project.eu/ns/model#>
\n
PREFIX onyx: <http://www.gsi.dit.upm.es/ontologies/onyx/ns#>
\n
PREFIX wnaffect: <http://www.gsi.dit.upm.es/ontologies/wnaffect/ns#>
\n
PREFIX dbps: <http://www.openlinksw.com/schemas/dbpedia-spotlight#>
\n
PREFIX dbr: <http://dbpedia.org/resource/>
\n\n
SELECT DISTINCT ?headline ?entityURI
\n
WHERE {
\n
?article a schema:NewsArticle .
\n
?article schema:headline ?headline .
\n
?article me:hasEntities ?entity .
\n
?entity dbps:anyURI ?entityURI .
\n
?entity dbps:anyURI dbr:Islamic_State_of_Iraq_and_the_Levant
\n
\n
}
\n
LIMIT 25"
},{
"name"
:
"Show the sentiment and emotion of articles"
,
"val"
:
"PREFIX schema: <http://schema.org/>
\n
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
\n
PREFIX me: <http://www.mixedemotions-project.eu/ns/model#>
\n
PREFIX onyx: <http://www.gsi.dit.upm.es/ontologies/onyx/ns#>
\n
PREFIX wnaffect: <http://www.gsi.dit.upm.es/ontologies/wnaffect/ns#>
\n\n
SELECT ?headline ?sentiment ?emotion
\n
WHERE {
\n
?article a schema:NewsArticle .
\n
?article schema:headline ?headline .
\n
?article marl:hasOpinion ?opinion .
\n
?opinion marl:hasPolarity ?sentiment .
\n
?article onyx:hasEmotionSet ?emotionset .
\n
?emotionset onyx:hasEmotion ?emotionlist .
\n
?emotionlist onyx:hasEmotionCategory ?emotion .}
\n
LIMIT 25
\n
"
},{
"name"
:
"How many opinions are positive, neutral or neutral on each news?"
,
"val"
:
"PREFIX schema: <http://schema.org/>
\n
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
\n
Prefix me: <http://www.mixedemotions-project.eu/ns/model#>
\n
Prefix onyx: <http://www.gsi.dit.upm.es/ontologies/onyx/ns#>
\n
PREFIX wnaffect: <http://gsi.dit.upm.es/ontologies/wnaffect/ns#>
\n
PREFIX sc: <http://purl.org/science/owl/sciencecommons/>
\n
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
\n
PREFIX sioc: <http://rdfs.org/sioc/ns#>
\n
PREFIX nif: <http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#>
\n
SELECT ?article
\n
(COUNT(DISTINCT ?opinionTextPositive) AS ?positives)
\n
(COUNT(DISTINCT ?opinionTextNegative) AS ?negatives)
\n
(COUNT(DISTINCT ?opinionTextNeutral) AS ?neutral)
\n
WHERE {
\n
{
\n
?blogpost a schema:NewsArticle .
\n
?article marl:hasOpinion ?opinion .
\n
?opinion marl:hasPolarity marl:Positive .
\n
?opinion nif:anchorOf ?opinionTextPositive .
\n
}
\n
UNION
\n
{
\n
?article a schema:NewsArticle .
\n
?article marl:hasOpinion ?opinion .
\n
?opinion marl:hasPolarity marl:Negative .
\n
?opinion nif:anchorOf ?opinionTextNegative .
\n\n
}
\n
UNION
\n
{
\n
?article a schema:NewsArticle .
\n
?article marl:hasOpinion ?opinion .
\n
?opinion marl:hasPolarity marl:Neutral .
\n
?opinion nif:anchorOf ?opinionTextNeutral .
\n
}
\n
} GROUP BY ?article"
}]
[{
"name"
:
"Show me news about Terrorism in Spain"
,
"val"
:
"PREFIX schema: <http://schema.org/>
\n
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
\n
PREFIX me: <http://www.mixedemotions-project.eu/ns/model#>
\n
PREFIX onyx: <http://www.gsi.dit.upm.es/ontologies/onyx/ns#>
\n
PREFIX wnaffect: <http://www.gsi.dit.upm.es/ontologies/wnaffect/ns#>
\n
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
\n
PREFIX dbr: <http://dbpedia.org/resource/>
\n
PREFIX dbo: <http://dbpedia.org/ontology/>
\n
PREFIX db: <http://dbpedia.org/>
\n\n
SELECT DISTINCT ?headline ?entity
\n
WHERE {
\n
?article a schema:NewsArticle .
\n
?article schema:headline ?headline .
\n
?article me:hasEntities ?entities .
\n
?entities rdfs:subClassOf ?entity .
\n
?entities rdfs:subClassOf dbr:Spain
\n
\n
}
\n
LIMIT"
},{
"name"
:
"Show news about ISIS"
,
"val"
:
"PREFIX schema: <http://schema.org/>
\n
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
\n
PREFIX me: <http://www.mixedemotions-project.eu/ns/model#>
\n
PREFIX onyx: <http://www.gsi.dit.upm.es/ontologies/onyx/ns#>
\n
PREFIX wnaffect: <http://www.gsi.dit.upm.es/ontologies/wnaffect/ns#>
\n
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
\n
PREFIX dbr: <http://dbpedia.org/resource/>
\n\n
SELECT DISTINCT ?headline ?entityURI
\n
WHERE {
\n
?article a schema:NewsArticle .
\n
?article schema:headline ?headline .
\n
?article me:hasEntities ?entity .
\n
?entity rdfs:subClassOf ?entityURI .
\n
?entity rdfs:subClassOf dbr:Islamic_State_of_Iraq_and_the_Levant
\n
\n
}
\n
LIMIT 25"
},{
"name"
:
"Show the sentiment of articles"
,
"val"
:
"PREFIX schema: <http://schema.org/>
\n
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
\n
PREFIX me: <http://www.mixedemotions-project.eu/ns/model#>
\n
PREFIX onyx: <http://www.gsi.dit.upm.es/ontologies/onyx/ns#>
\n
PREFIX wnaffect: <http://www.gsi.dit.upm.es/ontologies/wnaffect/ns#>
\n\n
SELECT ?headline ?sentiment
\n
WHERE {
\n
?article a schema:NewsArticle .
\n
?article schema:headline ?headline .
\n
?article marl:hasOpinion ?opinion .
\n
?opinion marl:hasPolarity ?sentiment .
\n
}
\n
LIMIT 25
\n
"
},{
"name"
:
"How many opinions are positive, neutral or neutral on each news?"
,
"val"
:
"PREFIX schema: <http://schema.org/>
\n
PREFIX marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>
\n
Prefix me: <http://www.mixedemotions-project.eu/ns/model#>
\n
Prefix onyx: <http://www.gsi.dit.upm.es/ontologies/onyx/ns#>
\n
PREFIX wnaffect: <http://gsi.dit.upm.es/ontologies/wnaffect/ns#>
\n
PREFIX sc: <http://purl.org/science/owl/sciencecommons/>
\n
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
\n
PREFIX sioc: <http://rdfs.org/sioc/ns#>
\n
PREFIX nif: <http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#>
\n
SELECT ?article
\n
(COUNT(DISTINCT ?opinionTextPositive) AS ?positives)
\n
(COUNT(DISTINCT ?opinionTextNegative) AS ?negatives)
\n
(COUNT(DISTINCT ?opinionTextNeutral) AS ?neutral)
\n
WHERE {
\n
{
\n
?blogpost a schema:NewsArticle .
\n
?article marl:hasOpinion ?opinion .
\n
?opinion marl:hasPolarity marl:Positive .
\n
?opinion nif:anchorOf ?opinionTextPositive .
\n
}
\n
UNION
\n
{
\n
?article a schema:NewsArticle .
\n
?article marl:hasOpinion ?opinion .
\n
?opinion marl:hasPolarity marl:Negative .
\n
?opinion nif:anchorOf ?opinionTextNegative .
\n\n
}
\n
UNION
\n
{
\n
?article a schema:NewsArticle .
\n
?article marl:hasOpinion ?opinion .
\n
?opinion marl:hasPolarity marl:Neutral .
\n
?opinion nif:anchorOf ?opinionTextNeutral .
\n
}
\n
} GROUP BY ?article"
},
{
"name"
:
"Which topics are mentioned in the news allocated in Syria"
,
"value"
:
""
},
{
"name"
:
"How many news are allocated in Syria?
"
,
"value"
:
""
}]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment