xCLiMF Spark

Extended Collaborative Less Is More Filtering for Spark

License

License

Categories

Categories

CLI User Interface
GroupId

GroupId

com.timotta
ArtifactId

ArtifactId

xclimf-spark
Last Version

Last Version

0.0.5
Release Date

Release Date

Type

Type

jar
Description

Description

xCLiMF Spark
Extended Collaborative Less Is More Filtering for Spark
Project URL

Project URL

https://github.com/timotta/xclimf-spark
Source Code Management

Source Code Management

https://github.com/timotta/xclimf-spark.git

Download xclimf-spark

How to add to project

<!-- https://jarcasting.com/artifacts/com.timotta/xclimf-spark/ -->
<dependency>
    <groupId>com.timotta</groupId>
    <artifactId>xclimf-spark</artifactId>
    <version>0.0.5</version>
</dependency>
// https://jarcasting.com/artifacts/com.timotta/xclimf-spark/
implementation 'com.timotta:xclimf-spark:0.0.5'
// https://jarcasting.com/artifacts/com.timotta/xclimf-spark/
implementation ("com.timotta:xclimf-spark:0.0.5")
'com.timotta:xclimf-spark:jar:0.0.5'
<dependency org="com.timotta" name="xclimf-spark" rev="0.0.5">
  <artifact name="xclimf-spark" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.timotta', module='xclimf-spark', version='0.0.5')
)
libraryDependencies += "com.timotta" % "xclimf-spark" % "0.0.5"
[com.timotta/xclimf-spark "0.0.5"]

Dependencies

compile (5)

Group / Artifact Type Version
org.apache.spark : spark-mllib_2.11 jar 2.1.1
org.apache.spark : spark-core_2.11 jar 2.1.1
org.apache.spark : spark-sql_2.11 jar 2.1.1
org.slf4j : slf4j-api jar 1.7.5
org.scala-lang : scala-library jar 2.11.8

test (2)

Group / Artifact Type Version
org.mockito : mockito-all jar 1.10.19
junit : junit jar 4.12

Project Modules

There are no modules declared in this project.

Spark xCLiMF

Spark implementation of the Extended Collaborative Less-isMore Filtering based in the python xCLiMF implementation. xCLiMF is a matrix factorization algorithm to optimize recommendation ranked lists.

Using

Example: Main.scala

Installation

Using gradle:

compile 'com.timotta:xclimf-spark:0.0.5'

Using maven:

<dependency>
  <groupId>com.timotta</groupId>
  <artifactId>xclimf-spark</artifactId>
  <version>0.0.5</version>
</dependency>

Requirements

  • Java 8
  • Scala 2.11.*
  • Spark 2.1.1

Contribute

To test

gradle clean test

To run main with spark

gradle clean jar
$SPARK_HOME/bin/spark-submit --master local --class com.timotta.rec.xclimf.Main build/libs/xclimf-spark.jar

To upload new package

gradle -Prelease uploadArchives

To release

gradle -Prelease closeAndReleaseRepository

Versions

Version
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1