Search code examples
neural-networkcntk

what neural network model for the picture below are supported by cntk?


what neural network model for the picture below are supported by cntk? which of them are supported by higher level API,and which are supported by core or lower level only?

neural network model:

neural network model


Solution

  • Based on the description of the different components, all of these networks are supported. However, the ones that will be efficient to learn are the ones which are trained with gradient based methods. CNTK doesn't have built-in learners for RBMs and other models whose updates are not based on stochastic gradients. You could write those updates with user-defined learners though.