Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0"?>
- <rdf:RDF
- xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
- xmlns:el="http://www.semanticlab.net/prj/recognize/voc/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:dcterms="http://purl.org/dc/terms/">
- <rdf:Description rdf:about="http://www.semanticlab.net/prj/recognize/lexicon/paper.evaluation.5.context">
- <rdfs:label>paper.evaluation.5.context</rdfs:label>
- <dcterms:description>bleeding edge, WITH context, WITH stopwords FILTER</dcterms:description>
- <dcterms:source>http://localhost:8080/openrdf-sesame/repositories/testde</dcterms:source>
- <el:query><![CDATA[
- PREFIX dbprop:<http://dbpedia.org/property/>
- PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
- PREFIX dbpedia-owl:<http://dbpedia.org/ontology/>
- PREFIX schema-org:<http://schema.org/>
- PREFIX prop-de:<http://de.dbpedia.org/property/>
- PREFIX owl:<http://www.w3.org/2002/07/owl#>
- PREFIX foaf:<http://xmlns.com/foaf/0.1/>
- PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
- PREFIX type: <http://dbpedia.org/class/yago/>
- SELECT ?s ?company_name ?abstract ?foundingDate ?homepage ?industry ?city ?country ?keyPeople ?ticker_name
- WHERE {
- ?s rdf:type dbpedia-owl:Company .
- ?s rdfs:label ?company_name .
- OPTIONAL { ?s dbpedia-owl:abstract ?abstract .}
- OPTIONAL { ?s dbpedia-owl:foundingDate ?foundingDate .}
- OPTIONAL { ?s foaf:homepage ?homepage .}
- OPTIONAL { ?s prop-de:branche ?industry .}
- OPTIONAL { ?s prop-de:sitz ?city .}
- OPTIONAL { ?s prop-de:region ?country .}
- OPTIONAL { ?s prop-de:leitung ?keyPeople . }
- OPTIONAL { ?s dbprop:symbol ?ticker_name .}
- FILTER ( LANG(?company_name) = "de" )
- FILTER ( LANG(?abstract) = "de" )
- }
- ]]></el:query>
- <el:class>com.weblyzard.backend.recognize.rdf.queryResultHandler.Paper5Context</el:class>
- <el:preferredLanguage></el:preferredLanguage>
- <el:entityType>ch.htwchur.wisdom.recognize.OrganizationEntity</el:entityType>
- <el:namesStopwordFactory>com.weblyzard.backend.recognize.FILTER.OrganizationNamesStopwords</el:namesStopwordFactory>
- <el:namesStopwordLanguages>C,de_CH,de_DE,en,fr</el:namesStopwordLanguages>
- <el:namesStopwords></el:namesStopwords>
- <el:contextStopwordFactory>com.weblyzard.backend.recognize.FILTER.OrganizationContextStopwords</el:contextStopwordFactory>
- <el:contextStopwordLanguages>de,en,fr</el:contextStopwordLanguages>
- <el:contextStopwords></el:contextStopwords>
- <el:firstnamesFilterFactory>com.weblyzard.backend.recognize.FILTER.OrganizationNamesFirstnameFilter</el:firstnamesFilterFactory>
- <el:firstnamesFilterLanguages>de</el:firstnamesFilterLanguages>
- <el:lastnamesFilterFactory>com.weblyzard.backend.recognize.FILTER.OrganizationNamesLastnameFilter</el:lastnamesFilterFactory>
- <el:lastnamesFilterLanguages>de</el:lastnamesFilterLanguages>
- <el:groundNamesFilterFactory>com.weblyzard.backend.recognize.FILTER.OrganizationNamesFirstnameGroundingFilter</el:groundNamesFilterFactory>
- <el:groundNamesFilterLanguages>C</el:groundNamesFilterLanguages>
- <el:affixFilterClass>com.weblyzard.backend.recognize.FILTER.OrganizationAffixFilter</el:affixFilterClass>
- </rdf:Description>
- </rdf:RDF>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement