上一页 1 2 3 4 5 6 ··· 38 下一页
摘要: 老唐数据分析机器学习 Seaborn-1Style import seaborn as sns import numpy as np import matplotlib as mpl import matplotlib.pyplot as plt # %matplotlib inline def s 阅读全文
posted @ 2019-12-16 15:06 LXL_1 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 老唐数据分析机器学习 plt_1 import pandas as pd unrate = pd.read_csv('unrate.csv') unrate['DATE'] = pd.to_datetime(unrate['DATE']) print(unrate.head(12)) ''' DAT 阅读全文
posted @ 2019-12-14 18:38 LXL_1 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 老唐数据分析机器学习# pandas_1 import pandas food_info = pandas.read_csv("food_info.csv") #print(type(food_info)) print (food_info.dtypes) ''' NDB_No int64 Shrt 阅读全文
posted @ 2019-12-13 18:20 LXL_1 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 01.创建文件 import pandas as pd df = pd.DataFrame({'ID':[1,2,3],'Name':['Tim','','Nick']}) #创建DataFrame df df = df.set_index('ID') df df.to_excel(r"C:\Use 阅读全文
posted @ 2019-11-12 15:01 LXL_1 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 老唐数据分析机器学习numpy1 import numpy world_alcohol = numpy.genfromtxt("world_alcohol.txt", delimiter=",", dtype=str) print(type(world_alcohol)) print (world_ 阅读全文
posted @ 2019-10-22 20:51 LXL_1 阅读(236) 评论(0) 推荐(0) 编辑
摘要: TensorFlow 人脸识别 以下资料来源于极客时间学习资料 人脸识别问题概述 人脸识别概述 人脸识别,特指利用分析比较人脸视觉特征信息进行身份鉴别的计算机技术。 广义的人脸识别实际包括构建人脸识别系统的一系列相关技术,包括人脸图像采集、 人脸定位、人脸识别 预处理、身份确认以及身份查找等;而狭义 阅读全文
posted @ 2019-07-27 13:59 LXL_1 阅读(4368) 评论(0) 推荐(0) 编辑
摘要: TensorFlow 验证码识别 以下资料来源于极客时间学习资料 • 准备模型开发环境 第三方依赖包 Pillow (PIL Fork) PIL(Python Imaging Library) 为 Python 解释器添加了图像处理功能。但是,在 2009 年发布 1.1.7 版本后,社区便停止更新 阅读全文
posted @ 2019-07-27 02:35 LXL_1 阅读(716) 评论(0) 推荐(0) 编辑
摘要: TensorFlow 手写体数字识别 以下资料来源于极客时间学习资料 • 手写体数字 MNIST 数据集介绍 MNIST 数据集介绍 MNIST 是一套手写体数字的图像数据集,包含 60,000 个训练样例和 10,000 个测试样例, 由纽约大学的 Yann LeCun 等人维护。 获取 MNIS 阅读全文
posted @ 2019-07-26 04:07 LXL_1 阅读(1415) 评论(1) 推荐(1) 编辑
摘要: TensorFlow 房价预测 以下资料来源于极客时间学习资料 • 房价预测模型介绍 前置知识:监督学习(Supervised Learning) 监督学习是机器学习的一种方法,指从训练数据(输入和预期输出)中学到一个模型(函数), 并根据模型可以推断新实例的方法。 函数的输出通常为一个连续值(回归 阅读全文
posted @ 2019-07-25 03:34 LXL_1 阅读(1220) 评论(0) 推荐(0) 编辑
摘要: • TensorFlow模块与架构介绍 以下资料来源于极客时间学习资料 TensorFlow 模块与 APIs TensorFlow 架构 • TensorFlow数据流图介绍 TensorFlow数据流图是一种声明式编程范式 声明式编程与命令式编程的多角度对比 斐波拉契数列示例 TensorFlo 阅读全文
posted @ 2019-07-24 19:22 LXL_1 阅读(857) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 38 下一页