All Downloads are FREE. Search and download functionalities are using the official Maven repository.

au.csiro.variantspark.input.HashingLabelSource.scala Maven / Gradle / Ivy

The newest version!
package au.csiro.variantspark.input

class HashingLabelSource(val maxLabel: Int) extends LabelSource {
  def getLabels(labels: Seq[String]): Array[Int] =
    labels.map(l => math.abs(l.hashCode()) % maxLabel).toArray
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy