上一页 1 ··· 191 192 193 194 195 196 197 198 199 ··· 494 下一页
摘要: Many people just drop all of their Zsh functions inside of their .zshrc and forget about it. But as your collection of functions begins to grow, you s 阅读全文
posted @ 2020-06-18 14:49 Zhentiw 阅读(194) 评论(0) 推荐(0)
摘要: A common problem you'll run into when working inside of your terminal is the desire to rename the directory you're currently in. This is achieved in 3 阅读全文
posted @ 2020-06-18 14:32 Zhentiw 阅读(219) 评论(0) 推荐(0)
摘要: import './assets/css/style.css'; const app = document.getElementById('app'); app.innerHTML = ` <h1>JavaScript DOM</h1> <form name="order"> <label> You 阅读全文
posted @ 2020-06-17 20:26 Zhentiw 阅读(235) 评论(0) 推荐(0)
摘要: 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 阅读(412) 评论(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 阅读(349) 评论(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 阅读(257) 评论(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 阅读(153) 评论(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 阅读(332) 评论(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)
上一页 1 ··· 191 192 193 194 195 196 197 198 199 ··· 494 下一页