Git Product home page Git Product logo

rechash's Introduction

###############################################
Parameters
###############################################

--dataset', type=string, default='', help='Name of the dataset, movielens: using MovieLens dataset, amazon: using Amazon dataset')
--mode, type=string, default='user_based', help='user_based: using user-based CF, item_based: using item-based CF')
--emb_method, type=int, default=0, help='0: using user-item interaction matrix (RH), 1: using metapath2vec for generating user/item embeddings (ME) for CF-KNN')
--blocks_metapath, type=string, default='', help='User/Item blocks meta-path')

# Parameters for KNN method
--n_neighbors, type=int, default=10, help='Number of user/item neighbors for CF')


# Paramters for metapath2vec (for ME approach only)
--kg_file, type=string, default='relations_vbpr_100.json', help='KG filename')
--n_walk, type=int, default=100, help='Maximum number of walks per starting node for metapath2vec (for ME only)')
--embsize', type=int, default=300, help='Node embedding size for metapath2vec (for ME only)')
--metapath, type=string, default='', help='Meta-path for generating node embeddings with metapath2vec (for ME only)')
--prs, type=string, default='[0,0]', help='Probabilities of going to visual node type when using visually-annotated meta-paths (for ME only)')


# Evaluation
--eval, type=bool, default=True, help='True: perform evaluation, False: do not perform evaluation')
--listK, type=string, default='[1, 5, 10, 50, 100]', help='List of K for top-K recommendations')





###############################################
Example of how to run the code:
###############################################

Before running the code, plese run this follwing command:
>>> chmod +x code_metapath2vec/metapath2vec

Using user-based KNN method and RH_UP_6bit_1r_BU user blocks on movielens dataset (The user embeddings are obtained from the user-item interaction matrix)
>>> python3 main.py --dataset movielens --mode user_based --blocks_metapath RH_UP_6bit_1r_BU --emb_method 0

Using item-based KNN method and Ph(P)_BP item blocks on movielens dataset (The item embeddings are obtained from the user-item interaction matrix)
>>> python3 main.py --dataset movielens --mode item_based --blocks_metapath Ph\(P\)_BP --emb_method 0

Using user-based KNN method and RH_UP_6bit_1r_BU user blocks on movielens dataset (The user embeddings are generated by metapath2vec based on meta-path UPTP) 
python3 main.py --dataset amazon --mode user_based --blocks_metapath RH_UP_6bit_1r_BU --emb_method 1 --metapath UPTP



rechash's People

Contributors

marshallcn avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.