Replies: 2 comments
-
@Ezra-Yu If I want to combine it with other custom hooks, I need to put it in a list format, right?
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Yes. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In some training configurations, it is necessary to modify the training-related parameters in the training, such as the scale in RandomResizeCrop in transform, the magnitude_level of Random Augment, the alpha in MixUp, and so on. Such as :
efficientnetv2
mobileone
Data Augmentation Revisited: Rethinking the Distribution Gap between Clean and Augmented Data
在一个算法中,需要在训练时修改一些训练配置,比如 ’RandomResizeCrop 中 ‘scale‘’, Random Augment 中 ‘‘magnitude_level ’’,等等。以上的一些算法使用这些训练技巧
We are considering three ways to implement it.
Option1 a unified interface based on specific switch timing (基于变化节点)
Option2 Three interfaces based on the specific configuration (基于特定数据变换,3个hook)
Option3 a unified interface based on the specific configuration with ‘’target‘’ (基于特定数据变换,一个统一hook)
prons and cons
优点及缺点
4 votes ·
Beta Was this translation helpful? Give feedback.
All reactions