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
In RANAGEAUGMENT mode, if i set ml-cvnets\examples\range_augment\classificationresnet_50.yaml --->learn_augmentation.mode to 'none' because i want to do some ablation experiment for RANAGEAUGMENT, then, line 33 in cross_entropy_with_neural_aug.py will be error, because line 240 in base_cls.py set return data into 'x', and 'x' is a tensor, you need to add x into 'out_dict ' just like:
Yes, if you disable learn_augmentation, you should also change both the loss to cross_entropy and stats.checkpoint_metric to top1 (instead of top1.logits).
In RANAGEAUGMENT mode, if i set ml-cvnets\examples\range_augment\classificationresnet_50.yaml --->learn_augmentation.mode to 'none' because i want to do some ablation experiment for RANAGEAUGMENT, then, line 33 in cross_entropy_with_neural_aug.py will be error, because line 240 in base_cls.py set return data into 'x', and 'x' is a tensor, you need to add x into 'out_dict ' just like:
out_dict = {
"augmented_tensor": None,
"logits": x}
return out_dict.
then, it works
The text was updated successfully, but these errors were encountered: