Skip to content

Commit

Permalink
Fixed small kwarg bug
Browse files Browse the repository at this point in the history
  • Loading branch information
adityasevak123ga committed Mar 19, 2024
1 parent cf39f65 commit 5fd2040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uncoverml/scripts/uncoverml.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def unsupervised(config):
@click.argument('calling_process')
@click.option('-p', '--partitions', type=int, default=1,
help='divide each node\'s data into this many partitions')
@click.option('-o', '--oos', is_flag=True,
@click.option('-o', '--oos_validate', is_flag=True,
help='Flag that validation needs to be done out-of-sample')
def validate(pipeline_file, model_or_cluster_file, calling_process, partitions, oos_validate):
"""Validate a model with out-of-sample shapefile."""
Expand Down

0 comments on commit 5fd2040

Please sign in to comment.