Giter Club home page Giter Club logo

scalda's Introduction

#scaLDA - Nitro's Open Source Topic Modeling Library

Welcome to scaLDA! This library allows you to train your very own Latent Dirichlet Allocation (LDA) topic models in Scala and Spark. Specifically, this library is an implementation of the Online LDA algorithm presented in Online Learning for Latent Dirichlet Allocation, Hoffman et al..

Things you can do with scaLDA:

  • Train an LDA model locally or in a distributed fashion using Spark.
  • Given a learned topic model, infer the topic proportions within a given document.
  • Evaluate a topic model with perplexity as well as semantic word coherence techniques.
  • Compute the similarity between two documents by evaluating the similarity between their respective topic proportion distributions.

Check out some examples of how you can use scaLDA in this repo's examples section.

##Examples

###Train an LDA model locally To train an LDA model locally you need two things

  • An iterator over minibatches of documents. A document is simply a String of the document contents. A minibatch of documents is therefore an IndexedSeq[String] where the size of the minibatch is choosen by the user. Therefore an iterator over minibatches is a Iterator[IndexedSeq[String]]. How this iterator is created depends on the particular way your documents are stored (i.e. local file system, S3, etc.) therefore it is up to the user to provide this iterator.
  • An OnlineLDAParams object containing the parameters for the LDA model that you are going to train.

The following is an example taken from the examples section in this repo. It creates an iterator over minibatches of documents from the NIPS corpus in this repo's data sets section.

class TextFileIterator(corpusDirectory: String, mbSize: Int) extends Iterator[IndexedSeq[String]] {

  val directoryFile = new File(corpusDirectory)

  val fileMinibatches = directoryFile
    .listFiles()
    .filter(f => f.getName != ".DS_Store")
    .grouped(mbSize)

  def hasNext = fileMinibatches.hasNext

  def next() = {
    println("processing next minibatch...")
    val nextMb = fileMinibatches.next()
    val stringMb = nextMb.map(f => scala.io.Source.fromFile(f, "ISO-8859-1").getLines.mkString(" "))
    stringMb.toIndexedSeq
  }

}

object LocalOnlineLDAExample extends App {

  val corpusDirectory = "datasets/nips_corpus"
  val vocabFile = "datasets/nips_vocab.txt"
  val mbSize = 100
  val numTopics = 20
  val numDocs = 6000
  val myIter = new TextFileIterator(corpusDirectory, mbSize)

  val vocab = scala.io.Source.fromFile(vocabFile).getLines.toList

  val p = OnlineLDAParams(
    vocabulary = vocab,
    alpha = 1.0 / numTopics,
    eta = 1.0 / numTopics,
    decay = 1024,
    learningRate = 0.7,
    maxIter = 100,
    convergenceThreshold = 0.001,
    numTopics = numTopics,
    totalDocs = numDocs,
    perplexity = true)

  //create an LDA instance with the given parameters
  val myLDA = LocalOnlineLDA(p)

  //train the model with the given minibatch iterator.
  val ldaModel = myLDA.inference(myIter)
}

###Train an LDA Model with Spark You can train an LDA model with Spark in an analogous way. The two things you need here are

  • An iterator over RDDs of documents. Documents are again treated as String's. However, this time a minibatch is represented by an RDD[string] so that we can perform operations on minibatches in parallel.
  • The exact same OnlineLDAParams object as the local version.

Here is an example implementation from the examples section. In this particular example, the RDD minibatch iterator is created from documents in a directory within a local filesystem. You will have to create your own custom iterator depending on where your documents are stored (e.g. HDFS, S3, etc.). Also, training an LDA model with Spark requires an implicit Spark context.

class textFileRDDIterator(corpusDirectory: String, mbSize: Int)(implicit sc: SparkContext) extends Iterator[RDD[String]] {

  val directoryFile = new File(corpusDirectory)

  val fileMinibatches = directoryFile
    .listFiles()
    .grouped(mbSize)

  def hasNext = fileMinibatches.hasNext

  def next() = {

    val nextMb = fileMinibatches.next()
    val stringMb = nextMb.map(f => scala.io.Source.fromFile(f, "ISO-8859-1").getLines.mkString)

    sc.parallelize(stringMb)
  }

}

object DistributedOnlineLDAExample extends App {

  val corpusDirectory = args(0)
  val vocabFile = args(1)
  val mbSize = args(2).toInt
  val numTopics = args(3).toInt
  val numDocs = args(4).toInt

  val conf = new SparkConf()
    .setAppName("Distributed Online LDA Example")
    .setMaster("local[3]")

  implicit val sc = new SparkContext(conf)

  val myIter = new textFileRDDIterator(corpusDirectory, mbSize)

  val vocab = scala.io.Source.fromFile(vocabFile).getLines.toList

  val p = OnlineLDAParams(
    vocabulary = vocab,
    alpha = 1.0 / numTopics,
    eta = 1.0 / numTopics,
    decay = 1024,
    learningRate = 0.7,
    maxIter = 100,
    convergenceThreshold = 0.001,
    numTopics = numTopics,
    totalDocs = numDocs)


  val lda = new DistributedOnlineLDA(p)

  val trainedModel = lda.inference(myIter)

  lda.printTopics(trainedModel)

  sc.stop()
}

###Infer Topic Proportions for a Document Once you have trained your LDA model, you might want to infer the proportions of the learned topics within a given document. This is a great way to learn the 'concepts' and 'themes' that are present in a document based on its high probability topics.

The following example loads a previous learned and serialized model and uses it to infer the topic proportions for a given document.

object TopicProportionsExample extends App {

  val modelLocation = args(0)
  val docLocation = args(1)

  val testDoc = Source.fromFile(docLocation).getLines().mkString

  val lda = LocalOnlineLDA()

  val myModelTry = lda.loadModel(modelLocation)

  val topicProps = lda.topicProportions(testDoc, myModelTry.get)

}

scalda's People

Contributors

alexminnaar avatar

Watchers

Marek Kolodziej avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.