-
Notifications
You must be signed in to change notification settings - Fork 709
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
correct folder mask path #660
correct folder mask path #660
Conversation
@samet-akcay this one is quite simple, can i get a review, plz? |
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.
Thanks for spotting this @jpcbertoldo! Yeah, I agree, it's good to check if the files exist. Annoying to figure it out during training or evaluation.
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.
Thanks! I have one comment
done @ashwinvaidya17 |
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.
Thanks!
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.
I'm fine with the changes, though it might make sense to target these changes to the datamodules feature branch instead of the main branch. That way it would be part of the datamodules redesign and we would avoid conflicts.
@djdameln I thought the same and forgot to write it. haha. Although, I was trying to use the branch and could not really use the CLI (just got tired of debugging and went back to main), so I'm more tending to work on main for the sake of practicity. Can we find something smart to do about it? Like, at lest keep a least of PRs to re-do as long as it remains simple (like this one). |
18dafe0
to
894edb5
Compare
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.
I think it's alright. We could merge this. |
Description
Fixes #659
I did not create new tests but I added an assertion in
make_dataset
which should not make the method slower and would force any similar issue to appear much earlier (first time I saw it was after the whole training, which is quite incovenient for a basic bug).Changes
Checklist