
人工智能
tuboshuShaoBaTu
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
梯度下降python实现
# 梯度下降 == 导数值下降 import matplotlib.pyplot as plt import numpy as np resultList = [] def targetFunc(xs): return (xs[0]-100)**2 + xs[1]+3 def gradientFunc(xs): print('当前的斜率') print(np.array...原创 2019-09-04 20:45:17 · 373 阅读 · 0 评论 -
二级网络爬虫【入门级】+ matplotlib画图+数据库+源码
爬取http://www.yododo.com/share/guide/?sort=isGood 获取评论,评论图片 import scrapy from day24.spiderproject.spiderproject.items import SpiderprojectItem import time from day24.homework import Downloader import...原创 2019-09-09 21:33:56 · 303 阅读 · 0 评论 -
数据分析实战
import pandas as pd import matplotlib.pyplot as plt import numpy as np from sklearn.cluster import KMeans # 引入大哥 import pickle import csv title = ['age','job','marital','education','default','balance...原创 2019-09-16 09:04:18 · 632 阅读 · 0 评论 -
kmeans++python代码
import random import math import time import numpy as np class FindList(): def getCurrentResultList(self, currentList, currentRandom): resultList = [] for temp in currentList: ...原创 2019-09-23 08:58:53 · 772 阅读 · 1 评论