com.github.chen0040.sparkml.recommender.FriendLinkRecommendation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark-ml-recommender Show documentation
Show all versions of spark-ml-recommender Show documentation
Recommender algorithms implemented in Java and for Spark
package com.github.chen0040.sparkml.recommender;
import lombok.Getter;
import lombok.Setter;
import java.util.HashSet;
import java.util.Set;
/**
* Created by xschen on 6/6/2017.
*/
@Getter
@Setter
public class FriendLinkRecommendation {
private String person1;
private String person2;
private Set commonFriends = new HashSet<>();
}