- 博客(9)
- 收藏
- 关注
原创 Ubuntu,python 3默认修改
在Tools→build system→ new build system 的空白稳当添加如下代码:{ "cmd": ["/usr/bin/python3", "-u", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.python" }保存后
2017-10-29 15:33:51 708 2
原创 阿姆斯特朗数
阿姆斯特朗数定义:一n位正整数=各位数字n次方之和 当n=3 时又称为水仙花数Programming:python3for i in range(1,1000):if i == (i//100)**len(str(i))+(i%100//10)**len(str(i))+(i%100%10)**len(str(i)): print (i,end=' ')i += 1输出:1 2 3
2017-08-09 01:05:26 352
原创 Ubuntu Install
Ubuntu Install每次折腾环境头就大,查漏补缺,记录一下遇到的一些问题1.Window10 最新版 window store里已经上线,不支持GUI,但其他大部分功能都有。master@Morning:~$ cat /etc/issueUbuntu 16.04.2 LTS \n \lmaster@Morning:~$ sudo lsb_release -a[sudo] password
2017-07-27 00:33:02 466 1
原创 一个Python 爬虫程序
一个简单的实现煎蛋网妹子图片爬取的Python脚本# -*- coding:utf-8 -*-'''version:Python 2.6standard libs: urllibauthor:Dead_morningsystem: cetos 6.5'''import reimport urllibdef get_content(html_page):'''html downlad
2017-06-18 16:45:39 5891 3
原创 The _imaging C module is not installed
系统:win 64 python : 2.7 使用pip 安装pip Pillow 无法正常使用wordcloud 报错: File “C:\Python27\Lib\site-packages\PIL\Image.py”, line 37, in getattr raise ImportError(“The _imaging C module is not install
2017-06-11 01:57:34 2237
原创 决策树模型(1)
分类通过已有的训练集,输入相应的模型中训练拟合,在通过检验集进行进行验证,从而预测未知样本类; 常用的分类法有决策树分类,基于规则的分类,神经网络,支持向量机, 朴素贝叶斯分类法,通常每一种分类方法都对应这一种模型算法。决策树模型就是其中的一种学习算法混淆矩阵通过将计数存放在混淆矩阵中,根据正确和错误预测来评估模型的性能 | |预测的类 |
2017-05-26 00:54:24 1005
原创 Logistic回归模型和Zeppelin简单使用
逻辑回归模型案例分析工具:Zeppelin 0.6,Spark 1.4一、项目介绍:通过用户个人信息,社会状态,信用历史,缴费信息等数据建立信用风险模型,来预测用户在申请汽车贷款时的违约概率。 信用风险模型:Application模型, Behavior模型,Collection模型二、Logistic回归模型:1、Logistic回归模型与线性回归模型区别Logic回归模型:用来预测因变量是分类
2017-05-09 01:06:21 1026
原创 Spark-Word Count实例
运行环境:Spark1.4集群 语言:Scala一、简单实例演示1、文本内容:2、操作Step1. 读取hdfs 上文件:val wcrdd1=sc.textFile("hdfs://master:9000/wordcount/words.txt").cacheStep2. flatMap 操作:将文本以空格形式切割val wcrdd2=wcrdd1.flatMap(_.split(" "))
2017-05-03 01:19:06 1158
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人