Skip to content

Commit

Permalink
Merge pull request fastai#188 from tommyschaefer/master
Browse files Browse the repository at this point in the history
Change references of RandomFlipXY to RandomFlip
  • Loading branch information
jph00 authored Mar 6, 2018
2 parents f08d2fa + 9b3d0c7 commit 0d7a979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion courses/dl1/lesson7-cifar10.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"outputs": [],
"source": [
"def get_data(sz,bs):\n",
" tfms = tfms_from_stats(stats, sz, aug_tfms=[RandomFlipXY()], pad=sz//8)\n",
" tfms = tfms_from_stats(stats, sz, aug_tfms=[RandomFlip()], pad=sz//8)\n",
" return ImageClassifierData.from_paths(PATH, val_name='test', tfms=tfms, bs=bs)"
]
},
Expand Down

0 comments on commit 0d7a979

Please sign in to comment.