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
When using Caffe, DIGITS adjusts the last layer of the network to match the number of classes in the dataset. This is pretty easy, just layer[-1].num_output = num_classes.
It's more complicated in Torch because the network is defined in a piece of lua source code instead of a text file. We need to find some kind of solution for this. Maybe after main.lua reads the model, it can edit that object and adjust the output of the last layer?
When using Caffe, DIGITS adjusts the last layer of the network to match the number of classes in the dataset. This is pretty easy, just
layer[-1].num_output = num_classes.It's more complicated in Torch because the network is defined in a piece of lua source code instead of a text file. We need to find some kind of solution for this. Maybe after
main.luareads the model, it can edit that object and adjust the output of the last layer?