blob: 90c2b790ec621aa9171575252ce15f1761f12d94 (
plain)
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
|
#!/bin/sh
EXP=a_simple_test
# change these vars to fit your hadoop installation
HADOOP_HOME=/usr/lib/hadoop-0.20
JAR=contrib/streaming/hadoop-streaming-0.20.2-cdh3u1.jar
HSTREAMING="$HADOOP_HOME/bin/hadoop jar $HADOOP_HOME/$JAR"
# ^^^
IN=input_on_hdfs
OUT=output_weights_on_hdfs
# you can remove the -reducer line if you want to
# do feature selection/averaging locally (e.g. to
# keep weights of the iterations)
$HSTREAMING \
-mapper "dtrain.sh" \
-reducer "lplp.rb l2 select_k 100000" \
-input $IN \
-output $OUT \
-file dtrain.sh \
-file lplp.rb \
-file ../dtrain \
-file dtrain.ini \
-file cdec.ini \
-file ../test/example/nc-wmt11.en.srilm.gz \
-jobconf mapred.reduce.tasks=30 \
-jobconf mapred.max.map.failures.percent=0 \
-jobconf mapred.job.name="dtrain $EXP"
|