├── .gitignore ├── LICENSE.txt ├── README.md ├── engine.json ├── project ├── assembly.sbt └── build.properties ├── src ├── main │ └── scala │ │ ├── Algorithm.scala │ │ ├── DataSource.scala │ │ ├── Engine.scala │ │ ├── Preparator.scala │ │ └── Serving.scala └── test │ └── scala │ ├── AlgorithmTest.scala │ ├── DataSourceTest.scala │ ├── EngineTest.scala │ ├── PreparatorTest.scala │ ├── ServingTest.scala │ └── SharedSingletonContext.scala └── template.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /engine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/engine.json -------------------------------------------------------------------------------- /project/assembly.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/project/assembly.sbt -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.2.8 2 | -------------------------------------------------------------------------------- /src/main/scala/Algorithm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/main/scala/Algorithm.scala -------------------------------------------------------------------------------- /src/main/scala/DataSource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/main/scala/DataSource.scala -------------------------------------------------------------------------------- /src/main/scala/Engine.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/main/scala/Engine.scala -------------------------------------------------------------------------------- /src/main/scala/Preparator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/main/scala/Preparator.scala -------------------------------------------------------------------------------- /src/main/scala/Serving.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/main/scala/Serving.scala -------------------------------------------------------------------------------- /src/test/scala/AlgorithmTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/test/scala/AlgorithmTest.scala -------------------------------------------------------------------------------- /src/test/scala/DataSourceTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/test/scala/DataSourceTest.scala -------------------------------------------------------------------------------- /src/test/scala/EngineTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/test/scala/EngineTest.scala -------------------------------------------------------------------------------- /src/test/scala/PreparatorTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/test/scala/PreparatorTest.scala -------------------------------------------------------------------------------- /src/test/scala/ServingTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/test/scala/ServingTest.scala -------------------------------------------------------------------------------- /src/test/scala/SharedSingletonContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/src/test/scala/SharedSingletonContext.scala -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-template-skeleton/HEAD/template.json --------------------------------------------------------------------------------