-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Develop #3
Develop #3
Conversation
- Added convert_image_list helper tool - Added more options to other tools
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's fix the continuous integration and the mostly minor comments.
class ImageryDataset: | ||
"""Create dataset with all files as described in the provided config file. | ||
""" | ||
|
||
def __init__(self, images, labels, chunk_size, output_size, chunk_stride=1): | ||
def __init__(self, images, labels, chunk_size, output_size, chunk_stride=1, | ||
resume_mode=False, log_folder=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
resume_mode doesn't sound like it would be a boolean. different name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestions? This is true when the dataset should skip already processed images.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
skip_processed=False?
Big PR to catch up the new repository to the non-github version.