Questions tagged [apache-stanbol]

Apache Stanbol provides a set of reusable components for semantic content management.

Apache Stanbol provides a set of reusable components for semantic content management.

Apache Stanbol's intended use is to extend traditional content management systems with semantic services. Other feasible use cases include: direct usage from web applications (e.g. for tag extraction/suggestion; or text completion in search fields), 'smart' content workflows or email routing based on extracted entities, topics, etc.

33 questions
9
votes
6 answers

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test

I am trying to install stanbol and getting the following error Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test Attaching the error log [INFO] [ERROR] Failed to execute goal…
Geetanjali Agarwal
  • 101
  • 1
  • 1
  • 4
9
votes
2 answers

How to convert a Jsoup Document to a W3C Document?

I have build a Jsoup Document by parsing a in-house HTML page, public Document newDocument(String path) throws IOException { Document doc = null; doc = Jsoup.connect(path).timeout(0).get(); return new…
chaosguru
  • 1,933
  • 4
  • 30
  • 44
6
votes
2 answers

How to perform Paragraph boundary detection in NLP frameworks?

I am working on extracting names of people from various ads appearing in English newspapers . However , i have noticed that I need to identify the boundary of an Ad , before extracting the names present in it ,since I need only the first occurring…
kiran
  • 339
  • 4
  • 18
3
votes
0 answers

Using Apache Stanbol with Node.js

I'm testing code examples that use Apache Stanbol with node.js. However, the codes are not working for me. For example the code var request = require('request'); var fs = require('fs'); fs.createReadStream('testdata.txt').pipe(request.post( { …
lily
  • 33
  • 4
2
votes
1 answer

Apache stanbol content extraction not working as expected

I am trying to extract phrases using Apache Stanbol. I expect results as follows. content="I live in Paris and would like to learn natural language processing using java." extracted phrase should be, Paris Natural Language Processing Java But Its…
Sudheera
  • 355
  • 3
  • 8
2
votes
2 answers

Apache Stanbol Sentiment Analysis

I am trying to get the sentiment tags for a given text in Apache-Stanbol . I have added the "sentiment-word-classifier" engine to a enhancer chain, i have also added all the required chains to be able to extract the tokens and their parts of speech…
2
votes
1 answer

Embed Apache stanbol in java application(Maven)

I am fairly new to maven and I cannot figure out how do I embed Apache Stanbol in my Maven application. I have added the below dependency to my pom, the is pom as there is no jar available in the repository. ` …
Pragati Sureka
  • 1,412
  • 12
  • 18
2
votes
0 answers

Stanbol and hadoop integration

I'm new to Stanbol. Can it be run on Hadoop? I cannot find an example of this. I assume it can, but before diving into it I want to be sure. Thanks!
schoon
  • 2,858
  • 3
  • 46
  • 78
2
votes
1 answer

Hosting an OWL ontology on the web to work with Apache Stanbol

I am new to ontology development and I just finished my first ontology. Now I need to use this ontology within Apache Stanbol to perform re-factoring of some RDF graphs. This is how you write a typical rule in Stanbol: myRule[…
Ermac
  • 37
  • 1
  • 6
2
votes
1 answer

Apache Stanbol and (Semantic) Media Wiki

Is it possible to extend Media Wiki with semantic services using Apache Stanbol? The Stanbol Website indicates that "any content repository compliant with JCR or CMIS specifications" can be used. However, I could not find whether this is the case…
hansi
  • 2,278
  • 6
  • 34
  • 42
1
vote
1 answer

Cannot understand Apache Stanbol enhancer response (Semantic Web)

I am new to semantic web and trying to understand. I am using Apache Stanbol I am seding text to enhance using Restful service and getting a Structure like ID: enhancement-e7a7f095-d127-0b6f-16db-b89d181c8314 confidence: …
user160820
  • 14,866
  • 22
  • 67
  • 94
1
vote
0 answers

Setting options in Apache Stanbol request

I am trying to learn semantic-web where I can pass the sample text. which is normally in English. I am using IKS project to learn. http://dev.iks-project.eu:8080/engines Is there a way to set that I should return enhancments only in English and if…
user160820
  • 14,866
  • 22
  • 67
  • 94
1
vote
0 answers

Running stanbol 0.9.0 incubating version throw Failed To start OSGI framework

I am trying to run apache stanbol 0.9.0 incubating version.I run mvn install -DskipTests that finished successfully. After building dependency but whenever I tried to run org.apache.stanbol.launcher.full-0.9.0-incubating.jar. Output >…
sajju
  • 11
  • 1
1
vote
1 answer

Java Api for Apache Stanbol

I am working on Apache Stanbol.I have gone through the documentation of stanbol.All they have given only rest api for every stanbol component.Is there any java api for stanbol using which i can write code in java to execute all the stanbol…
Santanu
  • 337
  • 1
  • 3
  • 13
1
vote
1 answer

Sentence Detection Engine not working in Stanbol

I have configured an enhanement chain in stanbol including tika,language Detection, Custom Named Entity Recogniser and OpenNLP Sentence Detector. I am clearly getting the NER and lang-detect output but the setence detection engine dosent seem to…
Geetanjali Agarwal
  • 101
  • 1
  • 1
  • 4
1
2 3