Hello I am wondering what algorithm would be clever to use for a tag driven e-commerce Python environment:
I need to generate recommendations (Python based recommendation engine) to such users by checking their interest tags and generating recommendations.
Ideas:
- A Hybrid recommendation algorithm can be used as each user has friends.(mixture of collaborative + context based recommendations).
- Maybe using user tags, similar users (peers) can be found to generate recommendations.
- Maybe directly matching tags between users and items via tags.
Any suggestion is welcome.
1 year 26 weeks ago
If you are looking for a recommendation engine for python similar to Java Taste, then you can use python wrappers for SUGGEST.
SUGGEST overview
python wrappers
Since python is still fairly slow when compared to C or Java, using wrappers will probably improve performance.