12 2018 档案

摘要:webdriver.chrome()禁止加载图片 from selenium import webdriver chrome_options = webdriver.ChromeOptions() prefs = {"profile.managed_default_content_settings. 阅读全文
posted @ 2018-12-28 15:48 Clownszz 阅读(474) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/xc_zhou/article/details/80823855 阅读全文
posted @ 2018-12-25 18:00 Clownszz 阅读(501) 评论(0) 推荐(0)
摘要:原文:https://blog.csdn.net/f156207495/article/details/82794151 问题 1 介绍L1和L2 L1和L2正则常被用来解决过拟合问题。而L1正则也常被用来进行特征选择,主要原因在于L1正则化会使得较多的参数为0,从而产生稀疏解。我们可以将0对应的特 阅读全文
posted @ 2018-12-06 13:34 Clownszz 阅读(1014) 评论(0) 推荐(0)
摘要:压缩稀疏矩阵构造时的参数从官网看不明白,参考如下: >>> indptr = np.array([0, 2, 3, 6]) >>> indices = np.array([0, 2, 2, 0, 1, 2]) >>> data = np.array([1, 2, 3, 4, 5, 6]) >>> c 阅读全文
posted @ 2018-12-04 10:22 Clownszz 阅读(537) 评论(0) 推荐(0)