 | | goonervs V2EX member #342436, joined on 2018-08-18 18:45:52 +08:00 |
 | Per goonervs's settings, the topics list is hidden |
Deals info, including closed deals, is not hidden
goonervs's recent replies
Google 像 Spotify 一样把 podcast 合并到 YouTube Music 了
设置 -> Apps-> Installed Apps -> iCloud -> Advanced Options -> Reset 就可以了
head 里加上
<meta name="apple-mobile-web-app-status-bar-style" cOntent="black-translucent">
<link rel="manifest" href="manifest.json">
manifest.json
{
"name": "App",
"short_name": "app",
"start_url": "/",
"display": "fullscreen",
"icons": [
{
"src": "/icons/icon.png",
"sizes": "72x72",
"type": "image/png"
}
]
}
without repetition: random.sample(lst, 2)
with repetition: random.choices(lst, k=2)
svm 是为了找最佳超平面需要找到到最大边界,那么需要找到 min_w ,这里用到了二次规划于是要求 min_L ,这里又用到了拉格朗日乘数法引入了 a 目的是将 min_L(w,b)问题转换为 maxL(a)问题,因为这样可以得到 x 的内积可以使用核方法解决非线性问题。