-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
I have made a file (using the CIV ontology) containing all civil registries from SAMH (available as download via Open Archives). I've run all functions, but the last step - closure - doesn't seem to compute the transitive closure of all detected links. The file links-individuals.csv is empty isn't created.
$ java -jar burgerLinker.jar --function closure --inputData output/smh.civ.hdt --outputDir output
=======================
Welcome to burgerLinker
=======================
WARNING: sun.reflect.Reflection.getCallerClass is not supported. This will impact performance.
START: Computing the transitive closure
START: Loading HDT dataset...
*DONE: Loading HDT dataset [runtime: 1.21 s]
--------
- Number of statements in this dataset: 10876758
- Number of distinct subjects: 1737181
- Number of distinct predicates: 19
- Number of distinct objects: 4956465
--------
Saving individual links (Between_D_M) for file: output/between_d_m-maxLev-3-fixed/results/between-D-M-maxLev-3-fixed.csv
Between_D_M 100% │█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████│ 84952/84952 links (0:00:01 / 0:00:00)
Saving individual links (Between_M_M) for file: output/between_m_m-maxLev-3-fixed/results/between-M-M-maxLev-3-fixed.csv
Between_M_M 100% │█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████│ 46802/46802 links (0:00:00 / 0:00:00)
Saving individual links (Between_B_D) for file: output/between_b_d-maxLev-3-fixed/results/between-B-D-maxLev-3-fixed.csv
Saving individual links (Between_B_M) for file: output/between_b_m-maxLev-3-fixed/results/between-B-M-maxLev-3-fixed.csv
Between_B_M 100% │█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████│ 63232/63232 links (0:00:01 / 0:00:00)
Saving individual links (Within_B_M) for file: output/within_b_m-maxLev-3-fixed/results/within-B-M-maxLev-3-fixed.csv
Within_B_M 100% │██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████│ 18576/18576 links (0:00:00 / 0:00:00)
Saving individual links (Within_B_D) for file: output/within_b_d-maxLev-3-fixed/results/within-B-D-maxLev-3-fixed.csv
Within_B_D 100% │██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████│ 63938/63938 links (0:00:01 / 0:00:00)
Starting: Closure of links in file: output/closure/results/links-individuals.csv
Closure 100% │███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████│ 630560/630560 links (0:00:00 / 0:00:00)
Number of individuals from Invidual to Class: 10
Number of individuals from Class to Individuals: 10
Number of max individuals in Eq Class: 10
Saving closure results to file...
Finished saving closure results to file!
Estimated number of certificates to be processed is: 10876758
Reconstructing dataset after transitive closure 100% │███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████│ 10876758/10876758 cert. (0:00:09 / 0:00:00)
*DONE: Computing the transitive closure [runtime: 17.65 s]
=====================
*DONE: burgerLinker [runtime: 17.67 s]
=====================
$ less output/closure/results/links-individuals.csv
output/closure/results/links-individuals.csv: No such file or directory
There is a finalDataset.nt file, but this just contains all input data. My 'test person' is "abraham johannes loon" (birth, marriage and death certificate) but in finalDataset.nt I encounter all 3 events with different person URIs.
What am I missing here?