上一页 1 ··· 179 180 181 182 183 184 185 186 187 ··· 494 下一页
摘要: 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 阅读全文
posted @ 2020-09-16 03:32 Zhentiw 阅读(146) 评论(0) 推荐(0)
摘要: section img { --aspect-ratio: calc( 4 / 3); --height: 30vmin; --width: calc(var(--height) * var(--aspect-ratio)); height: var(--height); width: var(-- 阅读全文
posted @ 2020-09-15 23:42 Zhentiw 阅读(140) 评论(0) 推荐(0)
摘要: 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 阅读全文
posted @ 2020-09-15 23:32 Zhentiw 阅读(180) 评论(0) 推荐(0)
摘要: 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 阅读(167) 评论(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 阅读(277) 评论(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 阅读(208) 评论(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 阅读(212) 评论(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 阅读(163) 评论(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 阅读(146) 评论(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 阅读(195) 评论(0) 推荐(0)
上一页 1 ··· 179 180 181 182 183 184 185 186 187 ··· 494 下一页