摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
Linear regression with multiple variables is also known as "multivariate linear regression". We now introduce notation for equations where we can have 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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) 阅读全文