You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is convenient for getting a general idea of what the augmentation is doing, but it is hard to identify what the image will look like at the "strongest" augmentation setting, as well as what the image will look like at the "weakest" augmentation setting.
It would help me a lot when I'm tweaking each individual augmentation's parameters before training my model if I could see a grid whose cells are ordered from the "weakest" setting to the "strongest" setting. My ultimate goal is to ensure that the objects that I am training my model to detect is still identifiable by a human after augmentation.
I understand that it can get complicated to fit everything on one grid when there are multiple parameters to step through, but if you specify which parameter you want to look at I think it would be feasible.
For example:
In the above example, the 'alpha' parameter would be fixed at the weak value 0.0, while the 'lightness' parameter would be stepped through in order from 'weakest' (0.0) to 'strongest' (1.0).
I realize that this can be done using brute force like this:
I can create a grid of images to show what happens to an image if you apply a particular augmentation with random parameters.
Example:
This is convenient for getting a general idea of what the augmentation is doing, but it is hard to identify what the image will look like at the "strongest" augmentation setting, as well as what the image will look like at the "weakest" augmentation setting.
It would help me a lot when I'm tweaking each individual augmentation's parameters before training my model if I could see a grid whose cells are ordered from the "weakest" setting to the "strongest" setting. My ultimate goal is to ensure that the objects that I am training my model to detect is still identifiable by a human after augmentation.
I understand that it can get complicated to fit everything on one grid when there are multiple parameters to step through, but if you specify which parameter you want to look at I think it would be feasible.
For example:
In the above example, the 'alpha' parameter would be fixed at the weak value 0.0, while the 'lightness' parameter would be stepped through in order from 'weakest' (0.0) to 'strongest' (1.0).
I realize that this can be done using brute force like this:
But this feels too tedious, and it becomes a hassle when there are a lot of parameters that need to be looked at and compared.
Is there a more efficient and elegant way to achieve what I am looking for?
The text was updated successfully, but these errors were encountered: