REMEMBER to install to the correct version version of python.
git clone [module github repo] cd [module folder] sudo ARCHFLAGS='-arch i386 -arch x86_64' easy_install ./
digraph "services.notifications.lambda.user_notification.test.java.test" { | |
node [shape=rectangle, colorscheme=set312;]; | |
rankdir=LR; | |
"internal-services.notifications.lambda.user_notification.test.java.test" [style=filled, fillcolor=1]; | |
"internal-.junit_library" [style=filled, fillcolor=2]; | |
"junit-junit-4.12" [style=filled, fillcolor=3, shape=ellipse]; | |
"internal-.junit_library" -> "junit-junit-4.12" [style=dashed]; | |
"internal-services.notifications.lambda.user_notification.test.java.test" -> "internal-.junit_library"; | |
"internal-3rdparty.java.com.fasterxml.jackson-databind" [style=filled, fillcolor=2]; | |
"com.fasterxml.jackson.core-jackson-databind-2.9.6" [style=filled, fillcolor=3, shape=ellipse]; |
package foo; | |
import edu.stanford.nlp.fsm.ExactGrammarCompactor; | |
import edu.stanford.nlp.io.IOUtils; | |
import edu.stanford.nlp.io.NumberRangeFileFilter; | |
import edu.stanford.nlp.io.NumberRangesFileFilter; | |
import edu.stanford.nlp.ling.*; | |
import edu.stanford.nlp.objectbank.TokenizerFactory; | |
import edu.stanford.nlp.parser.ViterbiParser; | |
import edu.stanford.nlp.parser.KBestViterbiParser; |
package foo; | |
import java.io.BufferedInputStream; | |
public class RunMallet { | |
public static void main(String[] args) throws Exception { | |
// create the command line parser | |
CommandLineParser parser = new PosixParser(); |