-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (24 loc) · 1004 Bytes
/
Makefile
File metadata and controls
33 lines (24 loc) · 1004 Bytes
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
# Maven on NFS is basically unusable, this is a replacement
M2_LOCAL=/state/partition1/twolfe/m2-local
#jar:
# rm -f target/*.jar
# mkdir -p $(M2_LOCAL)
# time mvn -Dmaven.repo.local=$(M2_LOCAL) clean compile assembly:single -DskipTests
#jarLocal:
# rm -f target/*.jar
# time mvn clean compile assembly:single -DskipTests
jar:
rm -rf target/
./scripts/build/info.sh
time mvn clean compile assembly:single -DskipTests
install:
mvn install -DskipTests -Dgpg.skip=true
# Feature selection based on information gain
experiments/feature-information-gain/feature-sets/fs-%.txt:
cat \
experiments/feature-information-gain/aug31a/featIG.order1-thin30-*-of-200.txt \
experiments/feature-information-gain/aug31a/featIG.order2-thin30-*-of-200.txt \
experiments/feature-information-gain/aug31a/featIG.order3-thin10-*-of-200.txt \
| sort -rg | head -n $* \
| awk -F"\t" '{if(NR>1) printf " + "; printf "\%s", $$2}END{print ""}' \
>experiments/feature-information-gain/feature-sets/fs-$*.txt