Skip to content

Commit

Permalink
minor change of pom, add compile scope
Browse files Browse the repository at this point in the history
  • Loading branch information
Long Pham committed May 23, 2018
1 parent 351fb93 commit 7de760d
Show file tree
Hide file tree
Showing 67 changed files with 140 additions and 189 deletions.
300 changes: 123 additions & 177 deletions .idea/workspace.xml

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,32 @@
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.8.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.8.0</version>
<classifier>models</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.12.0</version>
<scope>compile</scope>
</dependency>
</dependencies>

Expand Down
Binary file modified serialized/kevin.ser
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Stream;

public class HTMLDocumentIngestionManager {

Expand Down Expand Up @@ -248,17 +247,18 @@ public static void main(String[] args) {
printAnnotatedDocument(document);
PipelineHelper.printAnnotatedDocument(document, fields);
System.out.println("After printing results " + (System.currentTimeMillis()-time));
time = System.currentTimeMillis();
start = time;
document = getHTMLDocumentForAnnotation("https://cs.illinois.edu/directory/profile/kcchang", driver);
System.out.println("After creating document for annotation pipeline " + (System.currentTimeMillis()-time));
time = System.currentTimeMillis();
AnnotatorFactory.getInstance().getAnnotationPipeline().annotate(document);
System.out.println("After annotation " + (System.currentTimeMillis()-time));
System.out.println("Total time: " + (System.currentTimeMillis() - start));
time = System.currentTimeMillis();
PipelineHelper.printAnnotatedDocument(document, fields);
System.out.println("After printing results " + (System.currentTimeMillis()-time));
// time = System.currentTimeMillis();
// start = time;
// document = getHTMLDocumentForAnnotation("https://cs.illinois.edu/directory/profile/kcchang", driver);
// System.out.println("After creating document for annotation pipeline " + (System.currentTimeMillis()-time));
// time = System.currentTimeMillis();
// AnnotatorFactory.getInstance().getAnnotationPipeline().annotate(document);
// System.out.println("After annotation " + (System.currentTimeMillis()-time));
// System.out.println("Total time: " + (System.currentTimeMillis() - start));
// time = System.currentTimeMillis();
// PipelineHelper.printAnnotatedDocument(document, fields);
// System.out.println("After printing results " + (System.currentTimeMillis()-time));

// printAnnotatedDocument(document);
driver.close();

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 7de760d

Please sign in to comment.