随笔分类 -  机器学习

摘要:... 阅读全文
posted @ 2019-02-22 10:28 SilentKiller 阅读(176) 评论(0) 推荐(0)
摘要:第一章 1.1 1.1.2数据化运营是什么? 是指通过数据化的工具和技术,方法,对运营过程中的各个环节进行科学分析引导和应用,从而达到优化运营效果和效率,降低成本,提高效率的目的。 1.数据化运营的意义: 提高运营决策效率 提高运营决策正确性 优化运营执行过程 提升投资回报 2.数据化运营的2种方式 阅读全文
posted @ 2019-02-22 10:27 SilentKiller 阅读(2369) 评论(0) 推荐(0)
摘要:根据颜色(肤色)找出图片中皮肤的区域,然后通过一些条件判断是否为色情图片。 程序的关键步骤如下: 我们定义非色情图片的判定规则如下(满足任意一个判定为真): 这些规则你可以尝试更改,直到程序效果让你满意为止 关于像素肤色判定这方面,公式可以在网上找到很多,但世界上不可能有正确率 100% 的公式 你 阅读全文
posted @ 2019-02-11 11:52 SilentKiller 阅读(4890) 评论(0) 推荐(0)
摘要:import matplotlib.pyplot as plt import numpy as np from scipy.io import wavfile rate_h,hstrain=wavfile.read(r'H1_Strain.wav','rb') rate_l,lstrain=wavfile.read(r'L1_Strain.wav','rb') reftime,ref_H1 =... 阅读全文
posted @ 2018-11-05 18:05 SilentKiller 阅读(209) 评论(0) 推荐(0)
摘要:#coding=utf-8 import numpy as np from PIL import Image a = np.asarray(Image.open('F:\\3.gif').convert('L')).astype('float') depth = 10. # 预设深度值为10 取值范围(0-100) grad = np.gradient(a) # 取图像灰度的梯度值... 阅读全文
posted @ 2018-11-04 23:16 SilentKiller 阅读(251) 评论(0) 推荐(0)