change(example/cifar): augmentation with crop 32, cutout 8

This commit is contained in:
sugarme 2020-07-11 08:42:41 +10:00
parent 290421a30f
commit 7f078159fd

View File

@ -156,7 +156,8 @@ func main() {
devicedData := item.Data.MustTo(vs.Device(), true)
devicedLabel := item.Label.MustTo(vs.Device(), true)
bimages := vision.Augmentation(devicedData, true, 4, 8)
// bimages := vision.Augmentation(devicedData, true, 4, 8)
bimages := vision.Augmentation(devicedData, true, 32, 8)
logits := net.ForwardT(bimages, true)