From the course: Training Neural Networks in C++ (2021)

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Challenge: Design your own SDR neural network

Challenge: Design your own SDR neural network - C++ Tutorial

From the course: Training Neural Networks in C++ (2021)

Start my 1-month free trial

Challenge: Design your own SDR neural network

(upbeat music) - [Instructor] All right. Here's a system level challenge for you: design your own segment display recognition neural network. We'll give some thought to the design first, so please don't write any code just yet. Instead, try to answer this question: how would you recognize numbers from 0 to 9? Think about the dimensions of your multilayer perceptron. We already know that we want seven inputs because we'll receive seven brightness levels, one for each segment, but try to answer these questions: how many inputs and outputs would you use? How many hidden layers and how many neurons per hidden layer would you use? And also, try to think how you want the data to be presented at the output of your neural network. Your solution should be a diagram like this one, showing the inputs, the neurons, their connections, and the outputs. Don't worry about showing the bias inputs for all neurons. They will be there, just…

Contents