'--graph','-g',type=str,help='The path to the Cora graph, output by the cli.py cora command.',default='data/cora/graphs/cora_graph.pkl',show_default=True,
)
@click.option(
'--embeddings','-e',type=str,help='The path to the concatenated Cora node embeddings.',default='data/cora/embeddings/merged_node_embeddings.pkl',show_default=True,
)
@click.option(
'--seed','-s',type=int,help='The random seed for the experiment, != 0.',default=0,show_default=True,
)
@click.option(
'--iterations','-i',type=int,help='The number of runs. Each run has a different random seed. Ignored if the -s option is used.',default='10',show_default=True,
)
@click.option(
'--num_instances','-n',type=int,help='The number of instances per class for training.',default='20',show_default=True,
)
@click.option(
'--num_test','-t',type=int,help='The number of random test instances.',default='1000',show_default=True,
)
@click.option(
'--regularization','-c',type=float,help='Inverse of regularization strength.',default='0.1',show_default=True,
'--senseval','-s',type=click.Choice(['2','3']),help='Whether to run the experiment on SensEval 2 or 3.',default='3',show_default=True,
)
@click.option(
'--embeddings','-e',type=str,help='Embeddings file to load.',default='data/wordnet/embeddings/epoch_500/wsd_node_embeddings.pkl',show_default=True,
)
@click.option(
'--id_map','-i',type=str,help='The path to the .json id mapping.',default='data/wordnet/mappings/json/id_mapping.json',show_default=True,
)
@click.option(
'--lemma_map','-l',type=str,help='The path to the .txt lemma mapping.',default='data/wordnet/mappings/txt/lemmata_mapping2.txt',show_default=True,
)
@click.option(
'--sense_key','-k',type=str,help='The path to the wn30->wn17 mapping.',default='data/wordnet/mappings/txt/wn30_wn17_long-wn17_pos.txt',show_default=True,
)
@click.option(
'--output','-o',type=str,help='Name of the answer file. No path please.',default='wsd1',show_default=True,