上一页 1 2 3 4 5 6 ··· 26 下一页
该文被密码保护。 阅读全文
posted @ 2018-11-13 18:55 白开水加糖 阅读(0) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bashcmds=( step1.sh step2.sh step3.sh step4.sh ) for cmd in ${cmds[@]} do a=`echo ${cmd}" start!"` sh ${cmd} if [ $? -ne 0 ]; then echo ${cmd}" failed!" exit else echo $... 阅读全文
posted @ 2018-11-13 15:57 白开水加糖 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 一、人工智能学习算法分类 人工智能算法大体上来说可以分类两类:基于统计的机器学习算法(Machine Learning)和深度学习算法(Deep Learning) 总的来说,在sklearn中机器学习算法大概的分类如下: 1. 纯算法类 (1).回归算法 (2).分类算法 (3).聚类算法 (4) 阅读全文
posted @ 2018-11-12 11:20 白开水加糖 阅读(438) 评论(0) 推荐(0) 编辑
摘要: #获取一个文本的每行的某一列,其中按照tab分割。while myline=$(line) do str=`echo $myline | cut -d ' ' -f 1` echo $strdone < $1 阅读全文
posted @ 2018-11-01 17:00 白开水加糖 阅读(163) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-11-01 15:57 白开水加糖 阅读(3) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-10-30 11:45 白开水加糖 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 这些子查询在oracle和mysql等数据库中都能执行,但是在hive中却不支持,但是我们可以把这些查询语句改为join操作: -- 1.子查询 select * from A a where a.update_time = (select min(b.update_time) from A b) -- 2.in操作 select * from... 阅读全文
posted @ 2018-10-29 15:26 白开水加糖 阅读(1488) 评论(0) 推荐(0) 编辑
摘要: 建表语句: create table tb_in_base ( id bigint, devid bigint, devname string ) partitioned by (job_time bigint) row format delimited fields terminated by ' 阅读全文
posted @ 2018-10-29 15:12 白开水加糖 阅读(10126) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-10-12 10:56 白开水加糖 阅读(1) 评论(0) 推荐(0) 编辑
摘要: du -h --max-depth=2 阅读全文
posted @ 2018-10-10 13:54 白开水加糖 阅读(535) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 26 下一页