Skip to content

Commit

Permalink
Fix line length in dataset transform
Browse files Browse the repository at this point in the history
Also downgrade to v0.1.1 to include in latest release.
  • Loading branch information
Agustín Azzinnari committed Apr 17, 2018
1 parent dc7cfd0 commit 93ec1dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion luminoth/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.2dev0'
__version__ = '0.1.1'

__title__ = 'Luminoth'
__description__ = 'Computer vision toolkit based on TensorFlow'
Expand Down
4 changes: 2 additions & 2 deletions luminoth/tools/dataset/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def get_output_subfolder(only_classes, only_images, limit_examples,

@click.command()
@click.option('dataset_reader', '--type', type=click.Choice(READERS.keys()), required=True) # noqa
@click.option('--data-dir', required=True, help='Where to locate the original data.')
@click.option('--output-dir', required=True, help='Where to save the transformed data.')
@click.option('--data-dir', required=True, help='Where to locate the original data.') # noqa
@click.option('--output-dir', required=True, help='Where to save the transformed data.') # noqa
@click.option('splits', '--split', required=True, multiple=True, help='Which splits to transform.') # noqa
@click.option('--only-classes', help='Whitelist of classes.')
@click.option('--only-images', help='Create dataset with specific examples.')
Expand Down

0 comments on commit 93ec1dd

Please sign in to comment.