
python3
会发paper的学渣
Computer knows how to connect zero with one,Mathmatic get how to skip from one to infinity
展开
-
python3.6.8 基础镜像
dockerfile 关于python3.6.8原创 2023-03-08 09:42:16 · 499 阅读 · 0 评论 -
multiprocess并行处理
python 并行原创 2022-11-02 18:19:28 · 818 阅读 · 0 评论 -
高斯衰减python实现
高斯衰减python实现原创 2022-10-11 18:09:53 · 842 阅读 · 0 评论 -
docker GPU基础镜像python
docker GPU基础镜像python原创 2022-08-02 11:09:29 · 523 阅读 · 0 评论 -
blender python 常见操作
blender 中通过代码,相机布置,背景布置,灯光布置原创 2022-06-07 16:48:17 · 1231 阅读 · 0 评论 -
python 参数类型匹配提醒
1、对于常见类型,如下:def a(b:str):pass2、List 类型限制:from typing import Listdef a(b:List[str]):pass3、Dict类型限制:from typing import Dictdef a(b:Dict[str]):passdef c(b:Dict[str,int]):pass4、Tuple类型:from typing import Tupledef a(b:Tuple[str,int]):pas原创 2022-03-15 19:04:10 · 1503 阅读 · 0 评论 -
Python 包分享-scann
相似最近邻查询算法的封装。可以用来计算高维大数据时的向量计算问题原创 2022-03-15 17:50:12 · 2181 阅读 · 0 评论 -
python文件、文件夹的移动、复制、删除、重命名
#导入shutil模块和os模块#导入shutil模块和os模块import shutil,os #复制单个文件shutil.copy("C://a//1.txt","C://b")#复制并重命名新文件shutil.copy("C://a//2.txt","C://b//121.txt")#复制整个目录(备份)shutil.copytree("C://a","C://b//new_a") #删除文件os.unlink("C://b//1.txt")os.原创 2022-03-11 10:26:17 · 2251 阅读 · 0 评论 -
python 多线程处理
from concurrent.futures import ThreadPoolExecutor, as_completedfrom tqdm import tqdmdef mp_handler(job): vfile, args, gpu_id = job try: print(job) except KeyboardInterrupt: exit(0) except: traceback.print_exc()p = ThreadPoolExecutor(args.ng.原创 2022-03-09 17:40:00 · 639 阅读 · 0 评论 -
pandas读取mysql数据
def get_data(): conn = pymysql.connect(host=RSYS_HOST, port=RSYS_PORT, user=RSYS_USER, passwd=RSYS_PASSWORDD, db=RSYS_DB_NAME, charset='utf.原创 2022-02-14 18:18:55 · 841 阅读 · 0 评论 -
json转化为dataframe 和dataframe转化为json
1、json转化为dataframe简单json转化方法:import pandas as pddf = pd.read_json("test.json",encoding="utf-8", orient='records')print(df)复杂json转化方法2,中间可以对json做一些转化处理使其满足dataframe的格式要求:import json from pandas.io.json import json_normalizedata=open("test.json原创 2022-02-08 15:02:42 · 8713 阅读 · 0 评论 -
python继承和方法重写
1、python支持多继承,对应的属性和方法满足继承链式继承递推。class B: def functionA(self, original_inputs): print("B+{}".format(original_inputs))class A: def functionA(self,original_inputs): print("A+{}".format(original_inputs))class C(A,B): def func原创 2022-01-20 11:46:26 · 1449 阅读 · 0 评论 -
python函数默认对象只会初始化一次
def func(item,item_list=[]): item_list.append(item) print(item_list)#['iphone']func("iphone")#['iphone', 'huawei']func("huawei")#['oppo', 'xiaomi']func("xiaomi",item_list=["oppo"])#['iphone', 'huawei', 'huawei2']func("huawei2")总结:pytho.原创 2022-01-19 17:59:12 · 2355 阅读 · 0 评论 -
conda 常见操作操作
激活虚拟环境:conda activate base退出虚拟环境conda deactivate创建虚拟环境conda remove -n your_env_name(虚拟环境名称) --all查看当前存在哪些虚拟环境:conda env list创建虚拟环境:conda create -n your_env_name python=X.X复制虚拟环境:conda create -n conda-env2 --clone conda-env1......原创 2022-01-13 14:19:57 · 5684 阅读 · 0 评论 -
tensorflow 安装常见问题
1、离线安装对应版本选择:pip 包安装时版版本属性的含义_sslfk的博客-优快云博客2、linux环境pip源配置,在~下,创建.pip目录,并再.pip创建pip.conf文件,编写对应的源即可阿里云 http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https:原创 2022-01-12 20:31:51 · 280 阅读 · 0 评论 -
pip 包安装时版版本属性的含义
manylinux原创 2022-01-12 20:16:52 · 3139 阅读 · 0 评论 -
Anaconda 部署
简介Anaconda指的是一个开源的Python发行版本,其包含了conda、Python等180多个科学包及其依赖项。里面所包含的Jupyter Notebook是数据挖掘领域中最热门的工具。(例如Kaggle网站)废话不多说,现在我们开始来安装Anaconda。下载进入Anaconda的官网进行下载或学习。选择你想下载的Python版本,这里我们选择的是Python3.6选择你的操作系统和位数,这里我们选择的是Linux然后点击Download按钮就开始下载了安装找到下载好的文件名转载 2022-01-06 19:04:47 · 267 阅读 · 0 评论 -
tensorflow2.x加载预训练模型
tensorflow的预训练模型网址为:https://hub.tensorflow.google.cn已经下载好的预训练模型:bert_zh_L-12_H-768_A-12的v4版本(链接:https://pan.baidu.com/s/1Ld_mvXf8Es4lwCaW1PgKsQ提取码:3xba)和bert_zh_preprocess的v3版本(链接:https://pan.baidu.com/s/1jseOQKlVj88-Hpak2PXsCw提取码:s9eq)模型离线加载:im..原创 2022-01-06 19:03:24 · 1245 阅读 · 3 评论 -
python hasattr
可以通过hasattr判断对应是否有对应的属性使用方法如下:if hasattr(length, '__getitem__'):原创 2022-01-06 15:33:50 · 794 阅读 · 0 评论 -
python list 和set 集合加运算
list 可以使用 + 运算符直接合并listset不可以使用+ 运算法合并set(),也不可以通过+运算符混合list和set原创 2022-01-06 14:28:31 · 1497 阅读 · 0 评论 -
sasl/sasl.h: No such file or directory
yum install -y gcc-c++yum -y install cyrus-sasl cyrus-sasl-devel cyrus-sasl-lib原创 2021-12-29 17:09:45 · 1278 阅读 · 0 评论 -
python3 环境部署的坑
部署Python前,首先安装相关依赖:yum install gcc-c++yum -y install cyrus-sasl cyrus-sasl-devel cyrus-sasl-libyum install gcc python-develyum install python-backports-lzmayum -y install zlibyum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqli原创 2021-12-29 17:09:16 · 584 阅读 · 0 评论 -
python 直接启动一个文件服务器
python 直接启动一个文件服务器原创 2021-12-22 13:22:42 · 533 阅读 · 0 评论