Package gannuWSD

Source Code of gannuWSD.Wiki2SGF

package gannuWSD;

import java.io.File;

import gannuNLP.dictionaries.Wiki;

public class Wiki2SGF {

  /**
   * @param args
   */
  public static void main(String[] args)throws Exception{
    Wiki w=new Wiki();
    w.setVersion(args[0]);
    w.setPath(args[1]);
    w.load("all");
    File d=new File(args[3]);
    d.mkdirs();
    w.createInputFromArticle(args[2], args[3]);
  }

}
TOP

Related Classes of gannuWSD.Wiki2SGF

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.