Skip to content

Commit 836da2e

Browse files
committed
updated scripts
1 parent 59b0d2f commit 836da2e

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,20 @@ Update file `mandolin.properties` with the host parameters. Mind the missing `/`
3232

3333
## Usage
3434

35+
Initialize database, once for all.
36+
37+
```bash
38+
sh pgsql-init.sh
39+
```
40+
41+
### Run Mandolin test
42+
3543
```bash
36-
java -Xmx8g -jar ...
44+
java -Xmx8g -jar plain eval/mandolin-test src/test/resources/AKSW-one-out.nt http://mandolin.aksw.org/example/topic 95 10 95 false false false
3745
```
3846

47+
Discovered links can be found at `./eval/mandolin-test/discovered_*.nt`, where `*` is a threshold.
48+
3949
## Q&A
4050

4151
### How to install PostgreSQL on Ubuntu without root access?

pgsql-init.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/env bash
2+
cd pgsql && sh initdb.sh && cd ..

pgsql/initdb.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/usr/bin/env bash
22
initdb db -E utf8
3+
sh start.sh
34
createdb probkb

0 commit comments

Comments
 (0)