eventkg icon indicating copy to clipboard operation
eventkg copied to clipboard

The EventKG is a novel multilingual resource incorporating event-centric information extracted from several large-scale knowledge graphs such as Wikidata, DBpedia and YAGO, as well as less structured...

Results 6 eventkg issues
Sort by recently updated
recently updated
newest added

Bumps [jsoup](https://github.com/jhy/jsoup) from 1.15.1 to 1.15.3. Release notes Sourced from jsoup's releases. jsoup 1.15.3 jsoup 1.15.3 is out now, and includes a security fix for potential XSS attacks, along with...

dependencies

Hello Simon, I was able to build up the jar then I tried to implement the step 2 by using the following command: ` java -jar out/artifacts/eventkg_jar/Pipeline.jar config.txt 1` my...

Hello! According to [this specification](https://www.w3.org/TR/n-quads/) of n-quads, character `@` can be encountered only in literals, i.e. directives (lines starting with `@`) are not allowed in .nq files. This makes it...

I am trying to follow the instructions. I am getting the following error at "Step 2: Data Download" My data path in the config file was: /Users/username/Downloads/EventKG/data/ (Obviously, I masked...

Bumps [guava](https://github.com/google/guava) from 31.1-jre to 32.0.0-jre. Release notes Sourced from guava's releases. 32.0.0 Maven <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.0.0-jre</version> <!-- or, for Android: --> <version>32.0.0-android</version> </dependency> Jar files 32.0.0-jre.jar 32.0.0-android.jar Guava...

dependencies

[Histogram of number of events per date](https://eventkginterface.l3s.uni-hannover.de/sparql?query=SELECT+%3Fyear+%28count%28*%29+as+%3Fc%29+%7B%0D%0A++%3Fx+a+sem%3AEvent%3B+sem%3AhasBeginTimeStamp+%3Fdate%0D%0A++bind%28xsd%3Ainteger%28replace%28str%28%3Fdate%29%2C%22-.*%22%2C%22%22%29%29+as+%3Fyear%29%0D%0A%7D+group+by+%3Fyear+order+by+%3Fyear&format=text%2Fhtml): ```sparql SELECT ?year (count(*) as ?c) { ?x a sem:Event; sem:hasBeginTimeStamp ?date bind(xsd:integer(replace(str(?date),"-.*","")) as ?year) } group by ?year order by ?year ```...