Corrected method name for MixUp (#283)

This commit is contained in:
Sirish
2020-10-16 22:07:47 +02:00
committed by GitHub
parent 9ab696e876
commit c2c89759bf

View File

@@ -848,7 +848,7 @@
"```python\n",
"model = xresnet50()\n",
"learn = Learner(dls, model, loss_func=CrossEntropyLossFlat(), \n",
" metrics=accuracy, cbs=Mixup)\n",
" metrics=accuracy, cbs=MixUp)\n",
"learn.fit_one_cycle(5, 3e-3)\n",
"```"
]