Learning to Learn and Predict: A Meta-Learning Approach for Multi-Label Classification 2019-10-01 11:29:54 Paper: https://arxiv.org/pdf/1909.04176.pdf ...
分类:
移动开发 时间:
2019-10-01 20:39:47
阅读次数:
120
cursor 设置鼠标放上去后的形状 visability 设置是否可见 flex 详见这篇文章 "https://developer.mozilla.org/zh CN/docs/Learn/CSS/CSS_layout/Flexbox" 设置方法 flex 模型 方向 换行 设置每项的宽度 fl ...
分类:
Web程序 时间:
2019-09-30 14:59:01
阅读次数:
118
from bs4 import BeautifulSoup text='''<?xml version="1.0" encoding="ISO-8859-1"?><bookstore><book><title lang='eng'>Harry Potter</title><price>29.9</p ...
分类:
其他好文 时间:
2019-09-29 21:46:41
阅读次数:
117
转自:https://javarevisited.blogspot.com/2018/01/10-unit-testing-and-integration-tools-for-java-programmers.html#ixzz60s1lBt5p 一些很不错的测试框架整理 In last a cou ...
分类:
编程语言 时间:
2019-09-29 10:03:07
阅读次数:
142
Learn Git and GitHub without any code! Using the Hello World guide, you’ll start a branch, write comments, and open a pull request. Read the guide Lea ...
分类:
其他好文 时间:
2019-09-28 23:18:50
阅读次数:
238
机器学习正在迅速改变我们的世界。我们几乎每天都会读到机器学习如何改变日常的生活。如果你在淘宝或者京东这样的电子商务网站购买商品,或者在爱奇艺或是腾讯视频这样的视频网站观看节目,甚至只是进行一次百度搜索,就已经触碰到了机器学习的应用。使用这些服务的用户会产生数据,这些数据会被收集,在进行预处理之后用来 ...
分类:
编程语言 时间:
2019-09-28 14:31:59
阅读次数:
568
I went to the woods because I wished to live deliberately, to front only the essential facts of life, and see if I could not learn what it had to teac... ...
分类:
其他好文 时间:
2019-09-28 11:01:52
阅读次数:
93
决策树算法 决策树算法主要有ID3, C4.5, CART这三种。(在西瓜书中有详细介绍) $scikit learn$提供的$DecisionTreeClassifier$类可以做多分类任务。 和其他分类器一样,$DecisionTreeClassifier$需要两个数组作为输入: X: 训练数据 ...
分类:
编程语言 时间:
2019-09-27 22:43:33
阅读次数:
293
前言sklearn想必不用我多介绍了,一句话,她是机器学习领域中最知名的python模块之一,若想要在机器学习领域有一番建树,必绕不开sklearn sklearn的官网链接http://scikit-learn.org/stable/index.html# 首先,放上一张官网上的sklearn的结 ...
分类:
其他好文 时间:
2019-09-27 16:30:26
阅读次数:
147
1 tqdm用于显示进度条 from tqdm import tqdm import time #desc设置名称, # ncols设置进度条长度, # postfix以字典形式传入详细信息 d = {'loss':0.2,'learn':0.8} for i in tqdm(range(50),d ...
分类:
其他好文 时间:
2019-09-26 21:52:56
阅读次数:
110