We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4bf31f9 + 8cc0a82 commit 35780ecCopy full SHA for 35780ec
1 file changed
sansa-examples-flink/src/main/scala/net/sansa_stack/examples/flink/inference/RDFGraphInference.scala
@@ -72,7 +72,7 @@ object RDFGraphInference {
72
73
// load triples from disk
74
val graph = RDFGraphLoader.loadFromDisk(input, env)
75
- println(s"|G| = ${graph.size()}")
+ println(s"|G| = ${graph.size}")
76
77
// create reasoner
78
val reasoner = profile match {
@@ -88,7 +88,7 @@ object RDFGraphInference {
88
89
// compute inferred graph
90
val inferredGraph = reasoner.apply(graph)
91
- println(s"|G_inf| = ${inferredGraph.size()}")
+ println(s"|G_inf| = ${inferredGraph.size}")
92
93
val jn = if (jobName.isEmpty) s"RDF Graph Inference ($profile)" else jobName
94
}
0 commit comments