-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[show_model_with_bounding] fix issue #371
Conversation
@NoaShapira8 |
@@ -8,7 +8,7 @@ | |||
LayerTypeMap = OrderedDict([ | |||
("Default" , "0"), | |||
("Scaling" , "1"), | |||
("Conv" , "2"), | |||
("CNN" , "2"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you change conv layer to CNN?
Conv is the correct name of convolutional layer.
@@ -81,7 +81,9 @@ | |||
("Probabilistic" , ProbabilisticActivationFunctionMap), | |||
("LSTM" , None), | |||
("Reccurrent" , None), | |||
("Unscaling" , UnScalingMethodMap)] | |||
("Unscaling" , UnScalingMethodMap), | |||
("Flatten" , FlattenMethodMap), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Orisadek
You should validate that Flatten and Bounding are supported by parser and NerlWorkerNN
No description provided.