scrapy新建项目流程
参考连接: https://segmentfault.com/a/1190000013268442 https://cdn2.jianshu.io/p/c4234432a2f1 新建爬虫项目:scrapy startproject projectname 自定义items.py。 在settings.py中添加多agentlist,然后在middlewares.py中添加使用多agent代码,在s… 阅读更多 »scrapy新建项目流程
参考连接: https://segmentfault.com/a/1190000013268442 https://cdn2.jianshu.io/p/c4234432a2f1 新建爬虫项目:scrapy startproject projectname 自定义items.py。 在settings.py中添加多agentlist,然后在middlewares.py中添加使用多agent代码,在s… 阅读更多 »scrapy新建项目流程
参考链接: https://codelabs.developers.google.com/codelabs/tensorflow-for-poets/#0 https://codelabs.developers.google.com/codelabs/tensorflow-for-poets-2-tflite/#7 迁移学习训练模型: git源代码: https://github.com/goog… 阅读更多 »迁移学习图像分类的android应用(2)
参考链接:https://hackernoon.com/creating-insanely-fast-image-classifiers-with-mobilenet-in-tensorflow-f030ce0a2991 利用迁移学习获得模型: git源码https://github.com/tensorflow/tensorflow 利用image_retraining下的retrain.py文… 阅读更多 »迁移学习图像分类的android应用
import math def isPrime(n): if n<=1: return False if n==2 or n==3: return True if n%2==0:#偶数false return False for i in range(3,int(math.sqrt(n))+1,2):#奇数,是否能被<=sqrt(n)的数整除 if n%i==0:#能整除,false … 阅读更多 »判断一个数是否为质数