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
return [layers_names[i[0] - 1] for i in net.getUnconnectedOutLayers()]
need change to
return [layers_names[i - 1] for i in net.getUnconnectedOutLayers()]
The text was updated successfully, but these errors were encountered:
return [layers_names[i[0] - 1] for i in net.getUnconnectedOutLayers()]
need change to
return [layers_names[i - 1] for i in net.getUnconnectedOutLayers()]
The text was updated successfully, but these errors were encountered: