
net.sansa_stack.inference.spark.data.model.AbstractRDFGraphSpark.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sansa-inference-spark_2.12 Show documentation
Show all versions of sansa-inference-spark_2.12 Show documentation
Apache Spark based inference layer for RDF and OWL
The newest version!
package net.sansa_stack.inference.spark.data.model
import net.sansa_stack.inference.data._
/**
* A data structure that comprises a collection of triples. Note, due to the implementation of the Spark
* datastructures, this doesn't necessarily mean to be free of duplicates which is why a `distinct` operation
* is provided.
*
* @author Lorenz Buehmann
*
*/
abstract class AbstractRDFGraphSpark[Rdf <: RDF, D, G <: AbstractRDFGraphSpark[Rdf, D, G]](
override val triples: D
) extends AbstractRDFGraph[Rdf, D, G](triples)
with SparkGraphExtensions[Rdf, D, G] { self: G =>
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy