Python
LeeLeeLee钟硕
微电子中的算法人,vivo-iqoo体感操控设计师(2022),来交个朋友
展开
-
[Python]标准时间字符串split正则表达式处理
# 实现输入为标准时间字符串# 如果时间为凌晨0-6点,则认为是昨天的数据(输出昨天的日期),否则则认为是今天的数据import reimport datetimetime_table = ['2018/6/29 22:33', '2018/6/30 0:03', '2018/6/29 23:35', ...原创 2018-12-02 22:49:52 · 1036 阅读 · 0 评论 -
[深度学习]卷积神经网络CNN - 一张图理解滤波器/层数/深度
1.单个卷积滤波器的尺寸一般为3x3 或 5x5;如上图所示的kernel2.滤波器的层数与图像输入的色彩层有关 如上图所示层数为33.滤波器的深度是指布设多少个卷积特征提取器,越深的深度有利于多角度提取相关识别的特征,如上图所示深度为2最终经过合成后特征的图层的个数与上一级的卷积深度一致,从输入的图层个数 转化为特征层的个数;...原创 2019-05-04 12:24:46 · 5261 阅读 · 0 评论 -
[深度学习]Tensorflow教学 - 手写数字识别例程MNIST代码实现
import tensorflow as tfimport osimport urllibimport tensorflow.examples.tutorials.mnist.input_data as input_data# from tensorflow.examples.tutorials.mnist import input_data# 手动从Lecun乐村大牛的网站下载图片...转载 2019-05-04 11:48:15 · 560 阅读 · 0 评论 -
[Python]写入二进制文件
import structwith open(file_name_dir, 'wb')as fp: for x in data_pack: a = struct.pack('i', int(x)) fp.write(a) fp.close()pack的格式:原创 2019-01-08 16:40:36 · 1809 阅读 · 0 评论 -
[Python]读取二进制文件
import osimport xlwtpath = os.path.split(os.path.realpath(__file__))[0] # 设置路径print(path) # 获取指定路径下的文件dirs = os.listdir(...原创 2018-12-07 09:56:27 · 757 阅读 · 0 评论 -
[Python]Unix时间戳转标准时间字符串
import time# 秒级 整型 时间戳print(int(time.time()))# 毫秒级 整型 时间戳print(int(time.time()*1000))# 将时间戳转为时间字符串time_stamp = int(time.time())time_struct = time.localtime(time_stamp)print(time_struct)ti...原创 2018-12-01 01:08:27 · 1158 阅读 · 0 评论 -
[Python]txt读excel写例子
# 安装第三方库 pip install xlwt ; pip install xlrdimport osimport xlwt# 配置不同的映射字典# dict = xxx 自己填写 path = os.path.split(os.path.realpath(_...原创 2018-12-01 00:58:56 · 166 阅读 · 0 评论 -
[Python]Excel-xls文件读取
log.xls代码:# 安装第三方库 pip install xlwt ; pip install xlrd# 注意Excel文件路径加'\'# -*- coding: utf-8 -*-# 参考 https://blog.csdn.net/wangkai_123456/article/details/50457284#commentBoximport xlrdimpor...原创 2018-12-01 00:42:02 · 158 阅读 · 0 评论 -
[Python]网络爬虫获取CSDN博客访问次数
# pip install builtwith# pip install python-whois# -*- coding: utf-8 -*- import urllib.requestimport timeimport re# 寻找网站所有者# print(whois.whois('https://blog.csdn.net/xeonmm1')) # 下载网页we...原创 2018-12-02 23:11:38 · 572 阅读 · 1 评论 -
[Python]蒙特卡罗方法计算圆周率值
# 蒙特卡罗方法计算圆周率import randomsquare_count = 0round_count = 0loop_time = 1000000while loop_time: if loop_time%1000==0: print(loop_time) loop_time -= 1 x = random.random() - 0.5...原创 2018-12-02 23:07:27 · 2865 阅读 · 0 评论 -
[Python]获取当前脚本所在目录
import os# 设置路径path = "\\" # 获取指定路径下的文件 dirs = os.path.split(os.path.realpath(__file__))[0] print(dirs)结果:原创 2018-12-02 23:00:24 · 1317 阅读 · 0 评论 -
[Python]时间字符串转标准时间戳
# 字符类型的时间tss1 = '2013-10-10 23:40:00'# 转为时间数组timeArray = time.strptime(tss1, "%Y-%m-%d %H:%M:%S")print timeArray # timeArray可以调用tm_year等print timeArray.tm_year # 2013# 转为时间戳timeStamp ...原创 2019-08-13 20:30:00 · 495 阅读 · 0 评论