-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (50 loc) · 1.52 KB
/
build.gradle
File metadata and controls
57 lines (50 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
apply plugin: 'java'
apply plugin: 'application'
sourceCompatibility = '1.8'
mainClassName = 'in.aesh.segment.Main'
repositories {
mavenCentral()
}
dependencies {
compile 'net.sf.jopt-simple:jopt-simple:4.6'
compile 'com.google.guava:guava:17.0'
compile 'org.apache.commons:commons-math3:3.3'
compile 'com.google.code.gson:gson:2.2.4'
compile 'cc.mallet:mallet:2.0.7'
testCompile 'junit:junit-dep:4.11'
testCompile 'org.hamcrest:hamcrest-library:1.3'
}
test {
testLogging {
exceptionFormat = 'full'
}
}
run {
args \
"-reference", "/Users/ryanshaw/Code/u-series-segmentations/segmentations.json", \
"-coder", "annotators:docsouth", \
"-concentration", "0.136", \
"-estimate", \
"-d", "interviews:", \
"-stop", "src/test/data/STOPWORD.list", \
"-stem", \
"data/in/NN*/U-0005.txt", \
"data/in/NN*/U-0007.txt", \
"data/in/NN*/U-0008.txt", \
"data/in/NN*/U-0011.txt", \
"data/in/NN*/U-0012.txt", \
"data/in/NN*/U-0014.txt", \
"data/in/NN*/U-0017.txt", \
"data/in/NN*/U-0019.txt", \
"data/in/NN*/U-0020.txt", \
"data/in/NN*/U-0023.txt", \
"data/in/NN*/U-0098.txt", \
"data/in/NN*/U-0178.txt", \
"data/in/NN*/U-0180.txt", \
"data/in/NN*/U-0181.txt", \
"data/in/NN*/U-0183.txt", \
"data/in/NN*/U-0184.txt", \
"data/in/NN*/U-0185.txt", \
"data/in/NN*/U-0186.txt", \
"data/in/NN*/U-0193.txt"
}