├── .gitignore ├── README.md ├── data ├── README.txt ├── links.csv ├── movielens.yml ├── movies.csv ├── ratings.csv └── tags.csv ├── etc └── item-item.groovy ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src └── main ├── java └── org │ └── grouplens │ └── lenskit │ └── hello │ └── HelloLenskit.java └── resources └── logback.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/README.md -------------------------------------------------------------------------------- /data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/data/README.txt -------------------------------------------------------------------------------- /data/links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/data/links.csv -------------------------------------------------------------------------------- /data/movielens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/data/movielens.yml -------------------------------------------------------------------------------- /data/movies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/data/movies.csv -------------------------------------------------------------------------------- /data/ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/data/ratings.csv -------------------------------------------------------------------------------- /data/tags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/data/tags.csv -------------------------------------------------------------------------------- /etc/item-item.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/etc/item-item.groovy -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/main/java/org/grouplens/lenskit/hello/HelloLenskit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/src/main/java/org/grouplens/lenskit/hello/HelloLenskit.java -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenskit/lenskit-hello/HEAD/src/main/resources/logback.xml --------------------------------------------------------------------------------