This commit is contained in:
Akhil Raj 2025-02-03 13:00:28 +00:00 committed by GitHub
commit ba4673e428
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -926,7 +926,8 @@
}
],
"source": [
"bears = bears.new(item_tfms=Resize(128), batch_tfms=aug_transforms(mult=2))\n",
"custom_aug_transforms = [RandomResizedCrop(128, min_scale=0.35), Flip(), Brightness(), Contrast(), Rotate(max_deg=10.0)]\n",
"bears = bears.new(item_tfms=Resize(128), batch_tfms=custom_aug_transforms)\n",
"dls = bears.dataloaders(path)\n",
"dls.train.show_batch(max_n=8, nrows=2, unique=True)"
]