parser.add_argument("-g","--graph",default="graph.pkl",help="path to graph")
parser.add_argument("-e","--embeddings",default="cora_embeddings_uniform_m20.pkl",help="path to embeddings")
parser.add_argument("-s","--seed",type=int,default=0,help="random seed for one node classification. If this will be specified, always the function node_classification() will be executed.")
parser.add_argument("-s","--seed",type=int,help="random seed for one node classification. If this will be specified, always the function node_classification() will be executed.")
parser.add_argument("-i","--iterations",type=int,default=10,help="number of iterations of node classification. Counter of iteration is random seed.")
parser.add_argument("-n","--number",type=int,default=20,help="number of instances per class for training")
parser.add_argument("-t","--testset",type=int,default=1000,help="number of random instances in testset")
parser.add_argument("-c","--regularization",type=float,default=0.1,help="Inverse of regularization strength")