上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: 一. 生产密钥 生成密钥命令: ssh-keygen -t rsa -C “qinqiqili@163.com.cn” , 执行该命令后,一直按Enter即可; 最后该命令,默认会在如下用户主目录下的.ssh文件夹下生成一个文件id_rsa.pub,该文件的内容即是你生产的公钥 。 注意: ssh- 阅读全文
posted @ 2018-02-02 17:45 ordi 阅读(298) 评论(0) 推荐(0)
摘要: 配置中心,我们选用Sring Cloud Config Spring Boot 六步对接Spring Cloud Config 1. Pom.xml 文件中加入Spring Cloud Config客户端jar包 2.引入注解 启动类中,引入@EnableAutoConfiguration注解 在具 阅读全文
posted @ 2018-02-02 17:08 ordi 阅读(573) 评论(0) 推荐(0)
摘要: 我们这里的注册中心,采用ZooKeeper集群实现。 一. Spring Boot 三步对接ZK 1.Pom.xml 文件中加入ZK客户端jar包 2.Spring Boot 启动类,加入@EnableDiscoveryClient 注解 3.配置文件中,指定微服务的名称,ZK的连接信息 此处,由于 阅读全文
posted @ 2018-02-02 17:00 ordi 阅读(949) 评论(0) 推荐(0)
摘要: code: 执行结果,如下图: 阅读全文
posted @ 2018-01-31 10:17 ordi 阅读(106) 评论(0) 推荐(0)
摘要: 代码主要来自:http://scikit-learn.org/stable/ 误差函数: 采用最小二平方 代码如下: 执行结果如下: 阅读全文
posted @ 2018-01-29 19:40 ordi 阅读(120) 评论(0) 推荐(0)
摘要: Python 代码 结果: 阅读全文
posted @ 2018-01-29 17:16 ordi 阅读(843) 评论(0) 推荐(0)
摘要: 原文地址: http://blog.csdn.net/shizhixin/article/details/51181379 1 概述 真实的训练数据总是存在各种各样的问题: 1、 比如拿到一个汽车的样本,里面既有以“千米/每小时”度量的最大速度特征,也有“英里/小时”的最大速度特征,显然这两个特征有 阅读全文
posted @ 2018-01-04 11:16 ordi 阅读(797) 评论(0) 推荐(0)
摘要: 原文地址: http://xgboost.apachecn.org/cn/latest/model.html#xgboost Boosted Trees 介绍 XGBoost 是 “Extreme Gradient Boosting” 的缩写,其中 “Gradient Boosting” 一词在论文 阅读全文
posted @ 2017-12-31 15:34 ordi 阅读(3033) 评论(0) 推荐(0)
摘要: 可以参考: http://jacoxu.com/jacobian%E7%9F%A9%E9%98%B5%E5%92%8Chessian%E7%9F%A9%E9%98%B5/ 1. Jacobian 在向量分析中, 雅可比矩阵是一阶偏导数以一定方式排列成的矩阵, 其行列式称为雅可比行列式. 还有, 在代 阅读全文
posted @ 2017-12-31 12:09 ordi 阅读(413) 评论(0) 推荐(0)
摘要: 快速参考步骤: 1. 引入jar包 2. 在 MyBatis 的配置文件中配置拦截器插件 3. 写代码 优点: 简单,容易与现有代码想融合,现有代码不需要改动。 详细使用方法介绍如下: 1. 引入分页插件 引入分页插件有下面2种方式,推荐使用 Maven 方式。 1). 引入 Jar 包 你可以从下 阅读全文
posted @ 2017-10-18 11:46 ordi 阅读(7917) 评论(0) 推荐(1)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页