taxi

Winning entry to the Kaggle taxi competition
git clone https://esimon.eu/repos/taxi.git
Log | Files | Refs | README

commit 2c71011b157e707b3e0b85c348d32a1c08543fa0
parent c3e374a8a1294727ffa22ad56fda21c18a96c638
Author: Étienne Simon <esimon@esimon.eu>
Date:   Tue, 14 Jul 2015 14:47:45 +0000

oups

Diffstat:
Mprepare.sh | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/prepare.sh b/prepare.sh @@ -47,14 +47,13 @@ md5_check(){ exit 1 fi if command -v md5 >/dev/null 2>&1; then - md5cmd=md5 + md5=`md5 "$TAXI_PATH/$1" | sed -e 's/^.* //'` elif command -v md5sum >/dev/null 2>&1; then - md5cmd=md5sum + md5=`md5sum "$TAXI_PATH/$1" | sed -e 's/^.* //'` else echo "${RED} no md5 utility" return fi - md5=`$md5cmd "$TAXI_PATH/$1" | sed -e 's/^.* //'` if [ $md5 = $2 ]; then echo "$GREEN$md5 ok" else