上一页 1 ··· 189 190 191 192 193 194 195 196 197 ··· 477 下一页
摘要: We have used gradient descent where in order to minimize the cost function J(theta), we would take this iterative algorithm that takes many steps, mul 阅读全文
posted @ 2020-08-24 01:20 Zhentiw 阅读(218) 评论(0) 推荐(0)
摘要: In this lesson we’ll improve a generic button primitive component by refactoring it with Styled System to simplify the implementation. The naïve style 阅读全文
posted @ 2020-08-23 03:02 Zhentiw 阅读(382) 评论(0) 推荐(0)
摘要: Quadratic function: Cubic function: 阅读全文
posted @ 2020-08-22 16:50 Zhentiw 阅读(252) 评论(0) 推荐(0)
摘要: Feature scaling: it make gradient descent run much faster and converge in a lot fewer other iterations. Bad cases: Good cases: We can speed up gradien 阅读全文
posted @ 2020-08-22 16:33 Zhentiw 阅读(260) 评论(0) 推荐(0)
摘要: The gradient descent equation itself is generally the same form; we just have to repeat it for our 'n' features: In other words: The following image c 阅读全文
posted @ 2020-08-22 16:20 Zhentiw 阅读(254) 评论(0) 推荐(0)
摘要: Linear regression with multiple variables is also known as "multivariate linear regression". We now introduce notation for equations where we can have 阅读全文
posted @ 2020-08-21 14:48 Zhentiw 阅读(188) 评论(0) 推荐(0)
摘要: Similar to Storybook, react-styleguidist is used to show the custom UI elements. It is easy to setup and use, it uses markdown file as example page: i 阅读全文
posted @ 2020-08-20 22:55 Zhentiw 阅读(280) 评论(0) 推荐(0)
摘要: To compute this formula, you need to do: Actually, to make it simpler, we can do Vectorization, that formula is actually equals to: So we can code it 阅读全文
posted @ 2020-08-19 19:10 Zhentiw 阅读(100) 评论(0) 推荐(0)
摘要: In this lesson, we'll create an asymmetric promotional area where our promos get progressively smaller. We'll use CSS Grid to keep our HTML to 6 seman 阅读全文
posted @ 2020-08-19 03:08 Zhentiw 阅读(209) 评论(0) 推荐(0)
摘要: For: v = zeros(10, 1); for i=1:10, v(i) = 2^i; end; # the same as indices=1:10 for i=indices, disp(i) end; while & if & break: i=1; while i <=5, v(i) 阅读全文
posted @ 2020-08-19 02:49 Zhentiw 阅读(140) 评论(0) 推荐(0)
上一页 1 ··· 189 190 191 192 193 194 195 196 197 ··· 477 下一页