-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
please enumerate model coefficients #1
Comments
Hi, In this implementation of FMs, I choose not to use the intercept and the individual 'w' coefficients, so the model parameters that have to be estimated are the 'v' parameters (in the dot product term) of size n*k (nrFeatures * [factorLength: dimensionality of the factorization]). |
Thanks for your answer. I suspected that might be the case. Hi,In this implementation of FMs, I choose not to use the intercept and the individual 'w' coefficients, so the model parameters that have to be estimated are the 'v' parameters (in the dot product term) of size n*k (nrFeatures * [factorLength: dimensionality of the factorization]). |
I'm interested in your results, I will take a look if you send me the data. |
Hi Benjamin, That would be great if you could take a look. I uploaded the generated data into this folder on box.com: There is also a "box note" there which has the expected cross terms for both datasets. Both datasets were generated with the the same basic cross-terms in mind, but using 2 different techniques. Using observational statistics; namely mean, covariance, and variance works to help identify some of the terms but the libFM implementation by Rendle in C++, it seems to have found all the expected x-terms with only a small handful of false positives. I have also built a small command line scala project that uses your LibFM code (converted to scala classes). Let me know if you'd like me to post it or send it to you. Thanks, |
Hi,
Can you please document where the intercept, and the individual term "w" coefficients are stored as part of the model?
As I briefly looked thru the code, I only see the factorized matrix as part of the model.
Thank you.
The text was updated successfully, but these errors were encountered: