上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 83 下一页
摘要: 1.下载hadoop-common-2.2.0-bin并解压到某个目录 https://github.com/srccodes/hadoop-common-2.2.0-bin 2.设置hadoop.home.dir System.setProperty("hadoop.home.dir", "D:\ 阅读全文
posted @ 2020-05-07 21:26 lshan 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 参考:https://my.oschina.net/woter/blog/1843755 依赖: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan 阅读全文
posted @ 2020-05-07 13:38 lshan 阅读(4717) 评论(1) 推荐(0) 编辑
摘要: 原文:https://www.cnblogs.com/920913cheng/p/10240219.html 1. match处理Integer集合 package lambda.stream; /** * @author 作者:cb * @version 创建时间:2019年1月4日 下午2:35 阅读全文
posted @ 2020-05-06 17:18 lshan 阅读(211) 评论(0) 推荐(0) 编辑
摘要: ALS算法参数: // ALS关键代码 val model =ALS.train(训练集,rank,循环次数iter,lambda) 那是怎么想到要这样设置的呢?那就要在了解算法的基础上来设置此参数; 1、训练集,数据格式:(用户id 物品id 评分(0-1) ) 2、rank,根据数据的分散情况测 阅读全文
posted @ 2020-05-06 10:43 lshan 阅读(1105) 评论(0) 推荐(1) 编辑
该文被密码保护。 阅读全文
posted @ 2020-04-28 14:54 lshan 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 查看原文:http://www.ibloger.net/article/144.html https://www.cnblogs.com/zoujx/p/9221709.html 获取客户端的IP地址的方法是:request.getRemoteAddr(),这种方法在大部分情况下都是有效的。但是在通 阅读全文
posted @ 2020-04-27 14:41 lshan 阅读(20534) 评论(4) 推荐(0) 编辑
摘要: 参考即可:https://www.yiibai.com/pandas https://www.yiibai.com/numpy 阅读全文
posted @ 2020-04-21 15:14 lshan 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 参考原文:https://www.cnblogs.com/chancy/p/9995562.html 思路为:将数据库和服务器的时间都采用标准时区UTC存储处理。前端拿到标准时区的数据,统一根据用户所在时区进行转换。这样保证了后端数据时区的一致性,前端根据实际情况进行渲染。 保证服务器时区为UTC 阅读全文
posted @ 2020-04-17 15:38 lshan 阅读(7967) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-04-15 15:43 lshan 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1.无参数 public enum TYPE { INSERT, UPDATE, DELETE; } 2.带参数: public enum Topics { OK(0, "成功"), xx(100, "错误A"), yyy(200, "错误B"); Topics(int number, String 阅读全文
posted @ 2020-04-08 17:11 lshan 阅读(109) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 83 下一页