随笔分类 -  AI

AI
摘要:百度飞桨(PaddlePaddle)安装 OCR 文字检测(Differentiable Binarization DB) 百度飞桨(PaddlePaddle) - PP-OCRv3 文字检测识别系统 预测部署简介与总览 百度飞桨(PaddlePaddle) - PP-OCRv3 文字检测识别系统 阅读全文
posted @ 2023-05-15 08:59 VipSoft 阅读(4538) 评论(0) 推荐(3) 编辑
摘要:张量(Tensor)、标量(scalar)、向量(vector)、矩阵(matrix) Python Numpy 切片和索引(高级索引、布尔索引、花式索引) Python NumPy 广播(Broadcast) 广播(Broadcast)是 numpy 对不同形状(shape)的数组进行数值计算的方 阅读全文
posted @ 2023-05-12 09:02 VipSoft 阅读(296) 评论(1) 推荐(2) 编辑
摘要:[百度飞桨(PaddlePaddle) - PaddleOCR 文字识别简单使用](https://www.cnblogs.com/vipsoft/p/17384874.html) [百度飞桨(PaddlePaddle) - PP-OCRv3 文字检测识别系统 预测部署简介与总览](https:// 阅读全文
posted @ 2023-05-11 21:08 VipSoft 阅读(1021) 评论(0) 推荐(5) 编辑
摘要:代码中设置断点。 在Debug Variables 里面,点击 View as Array 如下图所示: 阅读全文
posted @ 2023-05-11 10:54 VipSoft 阅读(728) 评论(0) 推荐(0) 编辑
摘要:张量(Tensor)、标量(scalar)、向量(vector)、矩阵(matrix) 飞桨 使用张量(Tensor) 来表示神经网络中传递的数据,Tensor 可以理解为多维数组,类似于 Numpy 数组(ndarray) 的概念。与 Numpy 数组相比,Tensor 除了支持运行在 CPU 上 阅读全文
posted @ 2023-05-11 09:03 VipSoft 阅读(1131) 评论(0) 推荐(1) 编辑
摘要:张量(Tensor)、标量(scalar)、向量(vector)、矩阵(matrix) Python Numpy 切片和索引(高级索引、布尔索引、花式索引) Python NumPy 广播(Broadcast) 张量(Tensor):Tensor = multi-dimensional array 阅读全文
posted @ 2023-05-10 23:16 VipSoft 阅读(4030) 评论(0) 推荐(1) 编辑
摘要:手写数字识别任务 用于对 0 ~ 9 的十类数字进行分类,即输入手写数字的图片,可识别出这个图片中的数字。 使用 pip 工具安装 matplotlib 和 numpy python -m pip install matplotlib numpy -i https://mirror.baidu.co 阅读全文
posted @ 2023-05-09 23:06 VipSoft 阅读(1186) 评论(0) 推荐(2) 编辑
摘要:安装时间较长,通过 --verbose 参数 可以看在不在继续 Mac 安装 paddlehub 出现 Building wheels for collected packages: opencv-python, ffmpy, jieba, seqeval, future Building whee 阅读全文
posted @ 2023-05-09 23:04 VipSoft 阅读(2342) 评论(0) 推荐(0) 编辑
摘要:注意:32位pip没有PaddlePaddle源 Python 3.7.4 => AIStudio NoteBook 环境中的版本,3.8 后期运行源码时会有问题 ![image](https://img2023.cnblogs.com/blog/80824/202305/80824-2023052 阅读全文
posted @ 2023-05-08 13:07 VipSoft 阅读(1496) 评论(0) 推荐(0) 编辑
摘要:百度飞桨(PaddlePaddle)-数字识别 在Pycharm中使用Matplotlib中的pyplot时,运行代码报错: MatplotlibDeprecationWarning: Support for FigureCanvases without a required_interactive 阅读全文
posted @ 2023-05-05 08:58 VipSoft 阅读(970) 评论(0) 推荐(0) 编辑
摘要:人工智能、机器学习和深度学习覆盖的技术范畴是逐层递减的,三者的关系:人工智能 > 机器学习 > 深度学习。 人工智能(ArtificialIntelligence,AI)是最宽泛的概念,是研发用于模拟、延伸和扩展人的智能的理论、方法、技术及应用系统的一门新的技术科学 机器学习(MachineLear 阅读全文
posted @ 2023-04-24 11:42 VipSoft 阅读(1332) 评论(0) 推荐(2) 编辑
摘要:1.安装 openpyxl 组件 pip install openpyxl -i https://mirrors.aliyun.com/pypi/simple/ 新建Excel # coding=utf-8 from openpyxl import Workbook wb = Workbook() 阅读全文
posted @ 2023-02-07 10:40 VipSoft 阅读(1042) 评论(0) 推荐(0) 编辑
摘要:PDF 有多页,一次性转成JPG 图片,JAVA 报内存溢出, 现改为,每一页存成一张图片,然后再将多张图片合成一张图片。 安装库 pip3 install Image -i https://pypi.tuna.tsinghua.edu.cn/simple cv2.imread()不支持中文路径, 阅读全文
posted @ 2023-01-10 11:01 VipSoft 阅读(649) 评论(0) 推荐(0) 编辑
摘要:将Excel中的汉字列,转换成拼音首字母,并保存 需要安装导入 pypinyin、openpyxl 库 # pip install pypinyin from pypinyin import lazy_pinyin, Style import openpyxl def py(str_data): " 阅读全文
posted @ 2022-06-02 09:20 VipSoft 阅读(465) 评论(0) 推荐(0) 编辑
摘要:a = [1, 2, 3, 5, 6, 5, 7, 8] b = [1, 3, 4, 5, 6, 3, 8, 7] print('A => %s' % a) print('B => %s' % b) print('-' * 50) for index, item in enumerate(a): # 阅读全文
posted @ 2021-11-30 21:49 VipSoft 阅读(670) 评论(0) 推荐(0) 编辑
摘要:1.Ctrl+Shift+P -> install package 安装 Anaconda 查看Python 安装路径 { "python_interpreter":"C:\\Users\\Jimmy\\AppData\\Local\\Programs\\Python\\Python38\\pyth 阅读全文
posted @ 2020-06-06 23:42 VipSoft 阅读(1462) 评论(0) 推荐(0) 编辑
摘要:1.将 city_code_cn.json 中的省、市、区,翻译成英文,或直接替换去掉省、市 如:苏州市 -> 苏州 转成拼音后就变成 Suzhou,否则就会转成 Suzhoushi 怪怪的 import pypinyin import re def pinyin(word): s = '' for 阅读全文
posted @ 2020-05-28 18:35 VipSoft 阅读(605) 评论(0) 推荐(0) 编辑
摘要:1.输入乱码如图 2.Preferences -> Browse Packages.. 3.加入 "env": { "PYTHONIOENCODING": "utf8" } 重新编译,可输出中文 阅读全文
posted @ 2020-05-27 16:46 VipSoft 阅读(347) 评论(0) 推荐(0) 编辑
摘要:1.安装 netaddr 组件 pip install netaddr -i https://mirrors.aliyun.com/pypi/simple/ from netaddr import IPNetwork print('https://ipjisuanqi.com/#121.224.14 阅读全文
posted @ 2020-05-23 21:53 VipSoft 阅读(2012) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示