recommender-system
Here are 1,407 public repositories matching this topic...
-
Updated
Mar 7, 2020 - Python
-
Updated
Jun 5, 2020
-
Updated
Feb 27, 2020
My questions might seem dumb, but I was trying to understand the project. As seen in the documentation, various parameters go into the model. I was thinking if there is an easy way to do Hyperparameter tuning in spotlight?
Hi, thanks for this nice package!
AlternatingLeastSquares.recommend has a parameter called filter_items, which, apart from the source code, does not have any documentation.
The same parameter is found in RecommenderBase, [`AnnoyAlter
-
Updated
Jun 13, 2020 - Python
This is from the documentation at http://docs.seldon.io/api-oauth.html#actions
The item attribute definition is:
string name [attr_id 1]
string artist [attr_id 2]
enum category [attr_id 3]
double price [attr_id 4]
Where:
category is the enumeration
** (pop [value_id 1], rock [value_id 2], rap [value_id 3])
a range definition is created for the price ** (<10 [value_id 1], 10-20 [value_id
Came up in jfkirk/tensorrec#31
It would be nice to have an arg to re-order the batches every epoch while fitting.
- Add
shuffle_batchesarg tofit()andfit_partial()that shuffles the batch order every epoch if True - Add tests for the arg
In your code, you just check whether the randomly generated negative sampling exists in the training set, therefore, some negative samples may exist in the test set, Is it reasonable to do so?
-
Updated
May 18, 2020 - Go
-
Updated
Dec 17, 2019
Access to the mcmc hyperparameter is fairly obscure and needs better documentation.
- add documentation to python mcmc module
- add function that generates string parameter description
- add documentation to C
fastFM-core/src/ffm.cL. 77 ff
Hyperparameter layout in fm.hyper_param_:
print (['alpha'] +
['lambda_w'] + ['lambda_V' + str(i) for i in r-
Updated
Jun 4, 2020 - Python
-
Updated
May 18, 2020 - Python
-
Updated
Oct 8, 2018
-
Updated
May 18, 2020
-
Updated
Jun 11, 2020 - Python
-
Updated
Jul 11, 2017 - Jupyter Notebook
-
Updated
Jun 5, 2020 - Python
-
Updated
May 21, 2019 - Java
-
Updated
May 6, 2020 - Python
-
Updated
Mar 1, 2020 - Python
-
Updated
Apr 7, 2020 - Python
-
Updated
Mar 1, 2020 - Python
-
Updated
May 7, 2020 - Python
-
Updated
May 22, 2018 - Python
https://stackoverflow.com/questions/50257614/tensorflow-eager-and-tensorboard-graphs
This link seems to point out the problem.
Right now, I disable tensorflow eager execution by tf.compat.v1.disable_eager_execution().
-
Updated
Jan 30, 2020 - Python
Improve this page
Add a description, image, and links to the recommender-system topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the recommender-system topic, visit your repo's landing page and select "manage topics."

There is already one optimisation PR for predict method: lyst/lightfm#105
But sometimes one probably can do it in a simpler way (just using numpy with BLAS):
https://github.com/inpefess/lightfm/blob/predict_comparison/examples/batch_predict/predicting_with_matrix_multiplication.ipynb
@maciejkula what do you think about adding another, say predict_numpy/predict_all me