上一页 1 ··· 189 190 191 192 193 194 195 196 197 ··· 491 下一页
摘要: Instead of just returning a value from a recoil selector, you can return any promise, which means that you can do asynchronous functions in recoil sel 阅读全文
posted @ 2020-06-17 20:12 Zhentiw 阅读(411) 评论(0) 推荐(0)
摘要: pkg allows you to take any of your node projects and bundle them up into standalone apps that you can ship to people or servers that do not have node. 阅读全文
posted @ 2020-06-17 20:03 Zhentiw 阅读(149) 评论(0) 推荐(0)
摘要: Implementing the Gradient Descent Algorithm In this lab, we'll implement the basic functions of the Gradient Descent algorithm to find the boundary in 阅读全文
posted @ 2020-06-15 22:09 Zhentiw 阅读(346) 评论(0) 推荐(0)
摘要: If I have bunch of events and a bunch of probabilities, how likely is it those events happen based on the probabilities? If it is very likely then we 阅读全文
posted @ 2020-06-13 16:29 Zhentiw 阅读(255) 评论(0) 推荐(0)
摘要: The Softmax Function In the next video, we'll learn about the softmax function, which is the equivalent of the sigmoid activation function, but when t 阅读全文
posted @ 2020-06-11 02:55 Zhentiw 阅读(152) 评论(0) 推荐(0)
摘要: The sigmoid function is defined as sigmoid(x) = 1/(1+e-x). If the score is defined by 4x1 + 5x2 - 9 = score, then which of the following points has ex 阅读全文
posted @ 2020-06-11 02:43 Zhentiw 阅读(329) 评论(0) 推荐(0)
摘要: /* for li follow by another li, add margin */ ul li + li { margin-top: $unit; } // Display .display-flex { display: flex; &--wrap { flex-wrap: wrap; } 阅读全文
posted @ 2020-06-10 16:01 Zhentiw 阅读(155) 评论(0) 推荐(0)
摘要: When you doing Modal UI component, one common aria issue you need to deal with is "Refoucs the opener element when Modal closed". To do this, you need 阅读全文
posted @ 2020-06-08 19:02 Zhentiw 阅读(207) 评论(0) 推荐(0)
摘要: Give this: We have a wrongn classified point, how to move the line to come closer to the points? We apply learning rate and since wrong point is in po 阅读全文
posted @ 2020-06-07 23:08 Zhentiw 阅读(1151) 评论(0) 推荐(0)
摘要: const compose = (...fns) => (...args) => fns.reduceRight((res, fn) => [fn.call(null, ...res)], args)[0]; const input = document.getElementById("nameIn 阅读全文
posted @ 2020-06-07 17:11 Zhentiw 阅读(161) 评论(0) 推荐(0)
上一页 1 ··· 189 190 191 192 193 194 195 196 197 ··· 491 下一页