摘要:
First, pick a network architecture; choose the layout of your neural network, including how many hidden units in each layer and how many layers in tot 阅读全文
摘要:
As you can see "Characters" take two params, page & filter. Here use two alias: allChars: characters fullNmae: name. Alias is also useful when you nee 阅读全文
摘要:
Gradient checking will assure that our backpropagation works as intended. We can approximate the derivative of our cost function with: epsilon = 1e-4; 阅读全文
摘要:
When consuming asynchronous selectors in Recoil, you're going to need to tell React what to render while the API is fetching its data. One way to solv 阅读全文
摘要:
In this lesson, we add a Docker configuration to our project. In the Dockerfile we specify the different layers of our Docker image. We use a pretty s 阅读全文
摘要:
With neural networks, we are working with sets of matrices: In order to use optimizing functions such as "fminunc()", we will want to "unroll" all the 阅读全文
摘要:
In this lesson, we use CSS pseudo-elements and the mix-blend-mode property to create a duotone effect for an image. We wrap the image in a container e 阅读全文
摘要:
"Backpropagation" is neural-network terminology for minimizing our cost function, just like what we were doing with gradient descent in logistic and l 阅读全文