Skip to content

Commit

Permalink
Change default min_degree to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
justaddcoffee committed May 19, 2020
1 parent 7121a1c commit 3acf327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def query(query: str, input_dir: str, output_dir: str) -> None:
@click.option("output_dir", "-o", default="data/edges/", type=click.Path())
@click.option("train_fraction", "-t", default=0.8, type=float)
@click.option("validation", "-v", is_flag=True, default=False)
@click.option("min_degree", "-m", default=1, type=click.IntRange(min=0, max=None,
@click.option("min_degree", "-m", default=2, type=click.IntRange(min=0, max=None,
clamp=False))
def edges(*args, **kwargs) -> None:
"""Make sets of edges for ML training
Expand Down

0 comments on commit 3acf327

Please sign in to comment.