Class UpdateableGraphSimilarity
java.lang.Object
es.uam.eps.ir.relison.links.recommendation.algorithms.knn.similarities.GraphSimilarity
es.uam.eps.ir.relison.links.recommendation.updateable.knn.sim.UpdateableGraphSimilarity
- All Implemented Interfaces:
es.uam.eps.ir.ranksys.nn.sim.Similarity,UpdateableSimilarity
- Direct Known Subclasses:
UpdateableGraphCosineSimilarity
public abstract class UpdateableGraphSimilarity extends GraphSimilarity implements UpdateableSimilarity
Updateable similarity based on a social network graph.
-
Field Summary
Fields inherited from class es.uam.eps.ir.relison.links.recommendation.algorithms.knn.similarities.GraphSimilarity
graph -
Constructor Summary
Constructors Constructor Description UpdateableGraphSimilarity(FastGraph<?> graph)Constructor. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface es.uam.eps.ir.ranksys.nn.sim.Similarity
similarElems, similarity, similarityMethods inherited from interface es.uam.eps.ir.relison.links.recommendation.updateable.knn.sim.UpdateableSimilarity
updateAdd, updateAddElement, updateDel
-
Constructor Details
-
UpdateableGraphSimilarity
Constructor.- Parameters:
graph- the social network graph.
-