parser.add_argument('--config',type=str,help='path to config file')
parser.add_argument('--gpu',type=str,default='0',help='which GPU to use')
parser.add_argument('--model_name',type=str,default='',help='name of stored model')
parser.add_argument('--rand_edge_features',type=int,default=0,help='use random edge featrues')
parser.add_argument('--rand_node_features',type=int,default=0,help='use random node featrues')
parser.add_argument('--eval_neg_samples',type=int,default=1,help='how many negative samples to use at inference. Note: this will change the metric of test set to AP+AUC to AP+MRR!')