This repository was archived by the owner on Jul 18, 2024. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added two flags to problem configuration:
stream_images (DEFAULT: True) Flag indicating whether the problem will load and return images
preload_images (DEFAULT: False) Flag indicating whether images will be preloaded (i.e. loaded once at start)
stream_images gives huge boost when working with question/answer pipelines.
WARNING: if preload_images option is active, the images will also be "preprocessed" at start. This means that preloading should not be used when one needs to use the random augmentations!
Using the preload_images option takes some time at the beginning, but during training/batch processing it is comparable (when it comes to time) to using DataLoader with 4 workers, with the advantage is lower utilization of CPU(s).
Some results on mimic_lstm_vgg16_ewm_is_cat_ffn_c1_loss (C1 problem, batch_size = 200, 2 GPUs):