上一页 1 ··· 185 186 187 188 189 190 191 192 193 ··· 477 下一页
摘要: Gradient checking will assure that our backpropagation works as intended. We can approximate the derivative of our cost function with: epsilon = 1e-4; 阅读全文
posted @ 2020-09-15 23:23 Zhentiw 阅读(182) 评论(0) 推荐(0)
摘要: 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 阅读全文
posted @ 2020-09-13 22:28 Zhentiw 阅读(290) 评论(0) 推荐(0)
摘要: 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 阅读全文
posted @ 2020-09-13 22:19 Zhentiw 阅读(221) 评论(0) 推荐(0)
摘要: Install: npm i --save joi Example: const schema = Joi.object({ username: Joi.string() .alphanum() .min(3) .max(30) .required(), password: Joi.string() 阅读全文
posted @ 2020-09-13 22:09 Zhentiw 阅读(230) 评论(0) 推荐(0)
摘要: 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 阅读全文
posted @ 2020-09-13 02:12 Zhentiw 阅读(189) 评论(0) 推荐(0)
摘要: 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 阅读全文
posted @ 2020-09-10 16:06 Zhentiw 阅读(170) 评论(0) 推荐(0)
摘要: "Backpropagation" is neural-network terminology for minimizing our cost function, just like what we were doing with gradient descent in logistic and l 阅读全文
posted @ 2020-09-10 02:58 Zhentiw 阅读(219) 评论(0) 推荐(0)
摘要: Let's first define a few variables that we will need to use: 阅读全文
posted @ 2020-09-10 02:44 Zhentiw 阅读(182) 评论(0) 推荐(0)
摘要: In this lesson, we're going to learn how to create Recoil selectors that accept arguments. These are made possible using the selectorFamily utility fu 阅读全文
posted @ 2020-09-09 19:10 Zhentiw 阅读(889) 评论(0) 推荐(0)
摘要: When page get loaded, browser need to calculate how to render the page even before first pixel get rendered. Also means that for the content which is 阅读全文
posted @ 2020-09-08 18:53 Zhentiw 阅读(387) 评论(0) 推荐(0)
上一页 1 ··· 185 186 187 188 189 190 191 192 193 ··· 477 下一页