Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ Contributions are encouraged and appreciated. Create a push request (PR) against

# The Universal Recommender Version Log

## Git Tag: 0.7.1

This tag take precedence over 0.7.0, which should not be used. Changes:

- Removes the need to build Mahout from the ActionML's fork and so is much easier to install.
- Fixes a bug in the integration test which made it fail for macOS High Sierra in East Asian time zones.

## Git Tag: 0.7.0
**This README Has Special Build Instructions!**

Expand Down
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.typesafe.sbt.SbtScalariform.ScalariformKeys

name := "universal-recommender"

version := "0.7.0"
version := "0.7.1"

organization := "com.actionml"

Expand Down Expand Up @@ -45,7 +45,9 @@ libraryDependencies ++= Seq(
.map(_.exclude("org.apache.lucene","lucene-core")).map(_.exclude("org.apache.lucene","lucene-analyzers-common"))


resolvers += "Local Repository" at "file:///<path-to>/.custom-scala-m2/repo"
//resolvers += "Local Repository" at "file:///<path-to>/.custom-scala-m2/repo"

resolvers += "Temp Scala 2.11 build of Mahout" at "https://github.com/actionml/mahout_2.11/raw/mvn-repo/"

resolvers += Resolver.mavenLocal

Expand Down
7 changes: 5 additions & 2 deletions examples/multi-query-handmade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,11 @@ if [[ "$OSTYPE" == "linux-gnu" ]]; then
BEFORE=`date --date="tomorrow" --iso-8601=seconds`
AFTER=`date --date="1 day ago" --iso-8601=seconds`
else
BEFORE=`date -v +1d +"%Y-%m-%dT%H:%M:%SZ"`
AFTER=`date -v -1d +"%Y-%m-%dT%H:%M:%SZ"`
# changed as per PR https://github.com/actionml/universal-recommender/pull/49
# BEFORE=`date -v +1d +"%Y-%m-%dT%H:%M:%SZ"`
# AFTER=`date -v -1d +"%Y-%m-%dT%H:%M:%SZ"`
BEFORE=`date -v +1d -u +%FT%TZ`
AFTER=`date -v -1d -u +%FT%TZ`
fi
#echo "before: $BEFORE after: $AFTER"
echo "Recommendations for user: u1"
Expand Down