Skip to content

Commit

Permalink
Update fastai_dl_terms.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Reshama Shaikh committed Jan 25, 2018
1 parent 883cc60 commit ab8e8e9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fastai_dl_terms.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
`arch` architecture (such as resnet18, resnet34, resnext50)
`aug_tfms = transforms_side_on` data augmentation using flipping image on its side (horizontal, flip right to left)
`aug_tfms = transforms_top_down` data augmentation (flipping image top down)
`learn.bn_freeze` Batch Norm Unfreeze
`do_scale=True` scaling - neural nets really like input data to be ~N(0, 1)
`bptt` back propagation through time
`bs` = batch size
`.cuda()` we tell it manually to use the (default number of) GPUs
`.cuda(2)` specify number of GPUs to use is 2
`.cuda(2)` specify number of GPUs to use is 2
`learn.bn_freeze` Batch Norm Unfreeze
`lo` = layer optimizer
`lr` learning rate
`lr_find()` learning rate finder
Expand Down

0 comments on commit ab8e8e9

Please sign in to comment.