python
傅里叶也头大
QQ
展开
-
【C语言】typedef struct和直接struct的区别
例一:struct{char a;int b;} x;这里,创建了一个变量,包含两个成员,一个字符,一个整数。例二:struct STUDENT{char name;int age;};这里,创建了一个标签(tag),为成员列表提供了一个STUDENT的名字,以后就可以通过 struct STUDENT x; 来声明变量例三:typedef struct{char name;int age;}STUDENT;这里的作用和例二基本一致,STUDENT现在是一个数据类型的名原创 2021-12-22 21:26:06 · 2545 阅读 · 0 评论 -
numpy中数组(array)的赋值问题
因为change里存放的是A[2,:]的地址,因此改变A[2,:]后,change的值也变了。原创 2022-11-22 21:10:50 · 1222 阅读 · 0 评论 -
【tensorflow报错记录】InternalError: Attempting to perform BLAS operation using StreamExecutor without BL
InternalError: Attempting to perform BLAS operation using StreamExecutor without BLAS support[[node sequential/dense/MatMul (defined at Users\Administrator\AppData\Local\Temp\ipykernel_1920\1893904801.py:1) ]] [Op:__inference_train_function_568]Function原创 2022-01-21 21:11:37 · 4405 阅读 · 2 评论 -
MNIST数据集介绍
MNIST数据集是机器学习领域中非常经典的一个数据集,由60000个训练样本和10000个测试样本组成,每个样本都是一张28 * 28像素的灰度手写数字图片。点此下载Minist数据集该站点包含四个文件直接下载下来的数据是无法通过解压或者应用程序打开的,因为这些文件不是任何标准的图像格式而是以字节的形式进行存储的,所以必须编写程序来打开它。...原创 2022-01-21 16:15:33 · 938 阅读 · 0 评论 -
【报错记录】import keras时出现AlreadyExistsError: Another metric with the same name already exists.
AlreadyExistsError: Another metric with the same name already exists.AlreadyExistError:已存在另一个同名度量keras版本与tensorflow版本不对应导致查看conda 中所有包版本conda list发现keras为2.7.0版本卸载keraspip uninstall keras重装kreaspip install keras==2.6.0报错:ImportError: can原创 2022-01-21 16:06:09 · 3304 阅读 · 1 评论 -
【TensorFlow】20220115
TensorFlow由谷歌人工智能团队谷歌大脑(Google Brain)开发和维护原创 2022-01-15 13:42:10 · 564 阅读 · 0 评论 -
【openpyxl】:openpyxl操作excel最详细教程
一、读操作1、加载excel# -*- coding: utf-8 -*-import openpyxlpath = 'demo.xlsx'# 加载工作本wb = openpyxl.load_workbook(path)2、获取所有sheet# 获得所有标签页#sheet=wb.get_sheet_by_name("Sheet1") #已过时,不用#获取所有工作表名称sheet = wb.sheetnames #返回一个list3、获取指定sheetsheet = wb["d原创 2021-02-18 19:34:31 · 1944 阅读 · 2 评论 -
【Pandas】:Pandas:DataFrame.rolling(window=3).mean()用法详解
1、创建text2_1.cvs如下2、读取csv数据3、数据平滑处理设置滑动窗口值为2发现“滑动窗口值为2“就是将原始数据相邻的两个数做均值处理设置滑动窗口值为3发现“滑动窗口值为3“就是将原始数据相邻的三个数做均值处理而得到的4、作图对比前后数据发现滑动窗口值越大,曲线越平滑...原创 2021-02-04 00:29:30 · 3277 阅读 · 1 评论 -
适用于Python扩展程序包的非官方Windows二进制文件
适用于Python扩展程序包的非官方Windows二进制文件原创 2020-02-12 17:14:01 · 164 阅读 · 0 评论 -
python的print函数参数value1,value2,......,sep, end, file, flush=False
#####2020.2.7#####看了以下帮助文档,给了这么一串说明Help on built-in function print in module builtins:print(…)print(value, …, sep=’ ‘, end=’\n’, file=sys.stdout, flush=False)Prints the values to a stream, or to ...原创 2020-02-07 11:37:42 · 1551 阅读 · 0 评论 -
Python:python封装成exe文件方法
本文参考链接: link.本人用的是python3.6版本假如我们要打包的文件名是xxx.py#一、通过命令行安装 pywin32包命令如下pip3 install pywin32#二、安装pyinstaller包命令如下pip3 install pyinstaller#三、将想要打包的“xxx.py”文件放到安装pywin32的同一目录下(即运行pip3 install p...原创 2020-02-08 11:37:36 · 2227 阅读 · 0 评论