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

edu.arizona.sista.processors.DocumentSerializerExample.scala Maven / Gradle / Ivy

package edu.arizona.sista.processors

import java.io.{FileReader, BufferedReader}

/**
 *
 * User: mihais
 * Date: 10/1/14
 */
object DocumentSerializerExample {
  def main(args:Array[String]): Unit = {
    val ds = new DocumentSerializer
    val r = new BufferedReader(new FileReader(args(0)))
    var done = false
    var count = 0
    while(! done) {
      val d = ds.load(r)
      if(d == null) {
        done = true
      } else {
        count += 1
        if(count % 10 == 0)
          println(s"Loaded $count documents...")
      }
    }
    r.close()
    println(s"Done! Loaded $count documents.")
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy