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
In our current prototxt format used for configuration files, num_input and num_output are both declared as required. However, some layers such as PoolingLayers do not require these parameters because of the nature of the layer itself. We can either make those fields optional and go through a derivation process for layers that do not explicitly receive the fields, or move the fields to specific layer configurations instead of leaving them as common layer configurations.
The text was updated successfully, but these errors were encountered:
jsjason
added this to the
DNN - Improve the algorithm milestone
Sep 2, 2015
In our current prototxt format used for configuration files,
num_input
andnum_output
are both declared asrequired
. However, some layers such as PoolingLayers do not require these parameters because of the nature of the layer itself. We can either make those fieldsoptional
and go through a derivation process for layers that do not explicitly receive the fields, or move the fields to specific layer configurations instead of leaving them as common layer configurations.The text was updated successfully, but these errors were encountered: