zenogantner / MyMediaLite

recommender system library for the CLR (.NET)
http://mymedialite.net
501 stars 190 forks source link

kNN: load similarity matrix from disk #292

Open zenogantner opened 11 years ago

SillySnail commented 11 years ago

It will be fine if repeatedly calculation of similarity matrix could be avoided.

zenogantner commented 11 years ago

For a given similarity like Cosine or Pearson, saving and loading models is already supported via SaveModel() and LoadModel() in the API and --save-model=FILE/--load-model=FILE in the command line tools.

What is meant here is that one should be able to load similarity measures computed by external programs into MyMediaLite.

Suggestions on how to do this (how the interface should ideally look like, code, ...) are always welcome.