You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
35:06-37:25 How to build a CNN learner/model
what is a Learner?
- things can learn to fit the data/model
what is ConvLearner?
- to create convolution NN
- ConvLearner is replaced by create_cnn *
what is needed to make such a model?
- required
- DataBunch
- Model: resnet34 or resnet50
- metrics = is from kwargs *
How to pick between resnet34 and resnet50?
- always start with smaller one
- then see whether bigger is better
What is metrics
- things to print out during training
- e.g., error_rate
目录 Lesson 1 知识点分解 #63
The text was updated successfully, but these errors were encountered:
How to build a CNN learner/model?
35:06-37:25
How to build a CNN learner/model
what is a Learner?
- things can learn to fit the data/model
what is ConvLearner?
- to create convolution NN
-
ConvLearner
is replaced bycreate_cnn
*what is needed to make such a model?
- required
- DataBunch
- Model:
resnet34
orresnet50
-
metrics =
is fromkwargs
*How to pick between resnet34 and resnet50?
- always start with smaller one
- then see whether bigger is better
What is metrics
- things to print out during training
- e.g.,
error_rate
目录 Lesson 1 知识点分解 #63
The text was updated successfully, but these errors were encountered: