包含:经典机器学习、深度学习、强化学习、计算机视觉、分布式训练、自动建模、平台 1 . 适用于经典机器学习的工具 一、SciKit-learn star 39.2k fork 19.2k scikit-learn 是一种强大的基于 Python 语言的机器学习算法库(https://scikit-l ...
分类:
其他好文 时间:
2020-02-12 22:32:06
阅读次数:
114
What important thing did King Alfred learn when he penetrated the Danish camp of Guthrum? Alfred the Great acted as his own spy, visiting Danish camps ...
分类:
其他好文 时间:
2020-02-12 14:40:12
阅读次数:
75
本文在Creative Commons许可证下发布。 Here‘s my recommendation:Technology is changing fast.Any programming language you learn does have a shelf life.But don’t us ...
分类:
其他好文 时间:
2020-02-11 11:30:20
阅读次数:
68
一、枚举类型 1.枚举类型的格式就是enum+枚举类型的名称,可见下面的例子。 package com.bjpowernode.java_learning; ? public class D81_1_ { public static void main(String[] args) { /** * ...
分类:
编程语言 时间:
2020-02-11 09:40:25
阅读次数:
100
今天用pip安装skimage时报错: 这是因为网络的问题,需要使用国内的镜像源来加速,比如豆瓣源 命令改为: pip install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 或者 p ...
分类:
编程语言 时间:
2020-02-11 09:24:45
阅读次数:
95
按照这个去修改代码:https://www.e-learn.cn/content/qita/1655335 按照这个去解决bughttps://blog.csdn.net/qq_37837061/article/details/83514277 上述图片说明: 1.在prodcons++里面:添加 ...
分类:
其他好文 时间:
2020-02-10 13:28:38
阅读次数:
50
一、数字类 1.关于数字格式化:java.text.DecimalFormat; 2.数字格式元素: # 任意数字 , 千分位 . 小数点 0 不够补零 package com.bjpowernode.java_learning; ? import java.text.DecimalFormat; ...
分类:
编程语言 时间:
2020-02-09 09:53:46
阅读次数:
87
1.Practice makes perfect.熟能生巧。 2.God helps those who help themselves.天助自助者 3.Easier said than done.说起来容易做起来难。 4.Where there is a will,there is a way.有 ...
分类:
其他好文 时间:
2020-02-09 09:29:10
阅读次数:
101
@[toc] 1.GradientBoostingClassifier loss :给定损失函数,可选对数似然函数deviance和指数损失函数exponential;默认为deviance;不建议修改。 n_estimators :最大迭代次数,值过小可能会导致欠拟合,值过大可能会导致过拟合,一般 ...
分类:
其他好文 时间:
2020-02-08 23:17:16
阅读次数:
133
package com.LearnJava.Thread; /* 同步代码块 synchronized(同步监视器){ //需要同步的代码 } 同步监视器:俗称 锁,可以是任何实例化的类.但是需要共用同一个实例. */ class WindowSell implements Runnable{ Ob ...
分类:
编程语言 时间:
2020-02-08 13:55:40
阅读次数:
64