miaobinfei
这个作者很懒,什么都没留下…
展开
-
python元组
python元组原创 2023-04-06 14:53:05 · 306 阅读 · 0 评论 -
python字典
python字典原创 2023-04-06 14:57:04 · 502 阅读 · 0 评论 -
Python基础知识---Python列表学习
Python基础知识---Python列表学习原创 2022-12-22 10:05:31 · 642 阅读 · 0 评论 -
Python基础知识---Python字符串
python基础知识学习---Python字符串原创 2022-12-21 15:09:57 · 121 阅读 · 0 评论 -
Python常用模块解析
python常用模块解析原创 2022-10-28 12:30:00 · 101 阅读 · 0 评论 -
解决pycharm问题:module 'pip' has no attribute 'main'
解决pycharm问题:module 'pip' has no attribute 'main' https://www.cnblogs.com/Fordestiny/p/8901100.html转载 2019-07-23 10:43:43 · 139 阅读 · 0 评论 -
机器学习-决策树(监督学习)
一、决策树程序实例 from sklearn.feature_extraction import DictVectorizer import csv from sklearn import tree from sklearn import preprocessing from sklearn.externals.six import StringIO # Read in the csv fi...转载 2019-06-30 12:54:23 · 211 阅读 · 0 评论 -
tensorflow1.5基于anaconda环境的创建及简单使用
一、tensorflow环境穿建 1、设置anaconda环境变量 2、进入anaconda启动目录C:\Program Files\ProgramData\Anaconda3\Scripts,打开cmd 3、创建tensorflow沙箱 conda create –n tensorflow python=3.6 或打开anaconda创建 4、激活沙箱 activate tensorflow...原创 2020-02-04 16:29:48 · 644 阅读 · 0 评论 -
tensorflow1.5 多元线性模型
# -*- coding: utf-8 -*- """ @author: maiobinfei """ import os import tensorflow as tf import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D learn_rate=0.2 train_e...原创 2020-02-06 21:18:39 · 170 阅读 · 0 评论 -
tensorflow1.5 三层神经网络mnist手写数字识别
# -*- coding: utf-8 -*- """ @author: miaobinfei """ import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data import os import numpy as np import matplotlib.pyplot as plt mni...原创 2020-02-06 21:21:01 · 345 阅读 · 0 评论 -
tensorflow1.5神经网络mnist手写数字
# coding: utf-8 import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data #载入数据集,one_hot=True表示把图片设置0 1的格式 mnist = input_data.read_data_sets("MNIST_data",one_hot=True) #每个...原创 2020-02-04 16:50:15 · 246 阅读 · 0 评论 -
numpy用法
numpy实例 1、数组 import numpy as np q1=[1,2,3] q2=[2,3,4] array1=np.array([q1,q2]) #生成二维数组 array1.shape #数组维度,输出 (2, 3) array1.size #元素个数,输出 6 array1.dtype #...原创 2020-03-15 18:35:44 · 189 阅读 · 0 评论 -
pandas使用方法
Pandas 的三个基本数据结构:Series、DataFrame 和 Index Pandas 的 Series 对象是一个带索引数据构成的一维数组。(numpy是隐式索引,series是显示索引) Series (获取列元素) import numpy as np import pandas as pd s1=pd.Series([1,2,3,4]) s1 输出 ...原创 2020-03-15 21:43:22 · 267 阅读 · 0 评论 -
tensorflow一元线性模型
import tensorflow as tf import numpy as np x_data=np.random.rand(100) #生成100个随机数 noise=np.random.normal(0,0.05,x_data.shape) #生成随机偏差点 y_data=x_data*0.1+0.2+noise #生成随机训练点 b=tf.Variab...原创 2020-02-04 16:35:14 · 114 阅读 · 0 评论 -
IPYTHON常用命令
粘贴代码块:%paste和%cpaste 执行外部代码:%run a.py -d 计算代码运行时间:%timeit 魔法函数的帮助:?、%magic和%lsmagic %history -n 1-4 控制异常:%xmode %xmode 有一个输入参数,即模式。模式有 3 个可选 项:Plain、Context 和 Verbo...原创 2020-03-15 18:36:54 · 378 阅读 · 0 评论 -
matplotlib绘图
%matplotlib notebook #会在 Notebook 中启动交互式图形。 %matplotlib inline #会在 Notebook 中启动静态图形。 import matplotlib as mpl import matplotlib.pyplot as plt plt.style.use('classic') #设置绘图样...原创 2020-03-16 00:01:01 · 278 阅读 · 0 评论 -
Elasticsearch+cerebro部署文档
Elasticsearch+cerebro部署文档 一、系统设置 1.创建用户 useradd elasticsearch –M -s /sbin/nologin 2. 系统优化 1) vim /etc/sysctl.conf vm.max_map_count=655360 #文件最后添加一行 sysctl –p 2)vim /etc/security/l...原创 2019-08-07 15:04:17 · 839 阅读 · 0 评论 -
scrapy 使用代理服务proxy-master时,proxy-master报错(无法连接redis)
如无法连接Redis,报错: 1、进入ProxyPool-master\ProxyPool-master\proxypool 2、修改db.py中与redis建立连接的所有zadd方法,修改方法如下: zadd只能接收两个参数,所以需要把三个参数改成两个 def add(self, proxy, score=INITIAL_SCORE): if not re.match('\d...原创 2019-08-03 18:07:12 · 3378 阅读 · 0 评论 -
python处理mysql数据至Elastaticsearch
python处理mysql数据至Elastaticsearch 一、创建python文件mysqlToElastaticsearch.py 1、vim mysqlToElastaticsearch.py import pymysql from elasticsearch6 import Elasticsearch es = Elasticsearch([{"host":"127.0.0.1"...原创 2019-08-07 15:59:57 · 293 阅读 · 0 评论 -
flink-python的安装
一、下载flink https://github.com/apache/flink/tree/master/flink-python 二、安装pyflink yum install maven (安装maven-3.1.1以上版本) https://ci.apache.org/projects/flink/flink-docs-master/fl...原创 2019-07-24 11:53:54 · 5716 阅读 · 0 评论 -
python爬虫scrapy之downloader_middleware设置proxy代理
python爬虫scrapy之downloader_middleware设置proxy代理 一、背景: 小编在爬虫的时候肯定会遇到被封杀的情况,昨天爬了一个网站,刚开始是可以了,在settings的设置DEFAULT_REQUEST_HEADERS伪装自己是chrome浏览器,刚开始是可以的,紧接着就被对方服务器封杀了。 代理: 代理,代理,一直觉得爬去网页把爬去速度放...转载 2019-08-03 15:37:05 · 1961 阅读 · 0 评论 -
python在笛卡尔坐标轴下绘制图形
# -*- coding: utf-8 -*- import matplotlib.pyplot as plt import numpy as np import mpl_toolkits.axisartist as axisartist #创建画布 fig = plt.figure(figsize=(8, 8)) #使用axisartist.Subplot方法创建一个绘图区对象ax ax...原创 2020-04-17 21:03:48 · 1318 阅读 · 0 评论 -
python提供http端口(远程下载文件脚本)
python -m SimpleHTTPServer 8080原创 2021-09-27 21:12:14 · 286 阅读 · 0 评论 -
python pulp 做线性规划
pip install pulp import pulp a=pulp.LpVariable("a",lowBound=0,upBound=1,cat=pulp.LpContinuous) b=pulp.LpVariable("b",lowBound=0,upBound=1,cat=pulp.LpContinuous) c=pulp.LpVariable("c",lowBound=0,upBound=1,cat=pulp.LpContinuous) d=pulp.LpVariable("d",lowBo原创 2021-03-06 21:10:43 · 355 阅读 · 0 评论 -
python文件递归拷贝
#!/usr/bin/env python # -*- coding: cp936 -*- import os import time def getDirAndCopyFile(sourcePath,targetPath): if not os.path.exists(sourcePath): return if not os.path.exists(targ...原创 2018-09-29 14:21:03 · 878 阅读 · 0 评论 -
递归复制所有文件至同一目录
#!/usr/bin/env python # -*- coding: cp936 -*- #print "hello" import os import time from collections import deque sPh=r"D:\b" tPh=r"D:\a" def getDirAndCopyFile(sourcePath,targetPath): if not os...原创 2019-03-04 09:15:46 · 778 阅读 · 0 评论