Skip to content

Commit

Permalink
fixed typo of the tfms variable name in get_data function
Browse files Browse the repository at this point in the history
  • Loading branch information
driptaroop committed Aug 9, 2018
1 parent 921777f commit fc549b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion courses/dl1/lesson1-breeds.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@
"outputs": [],
"source": [
"def get_data(sz, bs): # sz: image size, bs: batch size\n",
" tmfs = tfms_from_model(arch, sz, aug_tfms=transforms_side_on, max_zoom=1.1)\n",
" tfms = tfms_from_model(arch, sz, aug_tfms=transforms_side_on, max_zoom=1.1)\n",
" data = ImageClassifierData.from_csv(PATH, 'train', f'{PATH}labels.csv', test_name='test',\n",
" val_idxs=val_idxs, suffix='.jpg', tfms=tfms, bs=bs)\n",
" \n",
Expand Down

0 comments on commit fc549b7

Please sign in to comment.