上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 57 下一页
摘要: 可以使用 Miniconda安装使用 # 不指定源,会很慢 pip install torch==1.12.0 -i https://pypi.tuna.tsinghua.edu.cn/simple pip install torchvision==0.13.0 -i https://pypi.tu 阅读全文
posted @ 2023-05-15 09:02 VipSoft 阅读(52) 评论(0) 推荐(0)
摘要: Typora 显示数学公式: https://www.cnblogs.com/vipsoft/p/17381591.html 基本语法 行内公式: 使用$ xxx $包裹公式 如:$E=mc^2$ => $E=mc^2$ 独立公式: 使用$$ xxx $$$包裹公式 【居中显示】 $$ \boxed 阅读全文
posted @ 2023-05-15 09:01 VipSoft 阅读(251) 评论(2) 推荐(0)
摘要: 百度飞桨(PaddlePaddle)安装 OCR 文字检测(Differentiable Binarization DB) 百度飞桨(PaddlePaddle) - PP-OCRv3 文字检测识别系统 预测部署简介与总览 百度飞桨(PaddlePaddle) - PP-OCRv3 文字检测识别系统 阅读全文
posted @ 2023-05-15 08:59 VipSoft 阅读(5502) 评论(0) 推荐(3)
摘要: 入园13年,支持一下园子 喜欢园子的纯净,特来支持,为园子的商业化努力:https://www.cnblogs.com/cmt/p/17320765.html 支付99,备注会员号 ![image](https://img2023.cnblogs.com/blog/80824/202305/80824-20230512142 阅读全文
posted @ 2023-05-12 14:26 VipSoft 阅读(69) 评论(0) 推荐(0)
摘要: 张量(Tensor)、标量(scalar)、向量(vector)、矩阵(matrix) Python Numpy 切片和索引(高级索引、布尔索引、花式索引) Python NumPy 广播(Broadcast) 广播(Broadcast)是 numpy 对不同形状(shape)的数组进行数值计算的方 阅读全文
posted @ 2023-05-12 09:02 VipSoft 阅读(339) 评论(1) 推荐(2)
摘要: [百度飞桨(PaddlePaddle) - PaddleOCR 文字识别简单使用](https://www.cnblogs.com/vipsoft/p/17384874.html) [百度飞桨(PaddlePaddle) - PP-OCRv3 文字检测识别系统 预测部署简介与总览](https:// 阅读全文
posted @ 2023-05-11 21:08 VipSoft 阅读(1332) 评论(0) 推荐(5)
摘要: Numbers \(x\): Scalar \(\mathbf{x}\): Vector \(\mathbf{X}\): Matrix \(\mathsf{X}\): Tensor \(\mathbf{I}\): Identity matrix \(x_i\), \([\mathbf{x}]_i\) 阅读全文
posted @ 2023-05-11 15:05 VipSoft 阅读(38) 评论(0) 推荐(0)
摘要: 代码中设置断点。 在Debug Variables 里面,点击 View as Array 如下图所示: 阅读全文
posted @ 2023-05-11 10:54 VipSoft 阅读(1057) 评论(0) 推荐(0)
摘要: 张量(Tensor)、标量(scalar)、向量(vector)、矩阵(matrix) 飞桨 使用张量(Tensor) 来表示神经网络中传递的数据,Tensor 可以理解为多维数组,类似于 Numpy 数组(ndarray) 的概念。与 Numpy 数组相比,Tensor 除了支持运行在 CPU 上 阅读全文
posted @ 2023-05-11 09:03 VipSoft 阅读(1297) 评论(0) 推荐(1)
摘要: 张量(Tensor)、标量(scalar)、向量(vector)、矩阵(matrix) Python Numpy 切片和索引(高级索引、布尔索引、花式索引) Python NumPy 广播(Broadcast) 张量(Tensor):Tensor = multi-dimensional array 阅读全文
posted @ 2023-05-10 23:16 VipSoft 阅读(5145) 评论(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 阅读(1255) 评论(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 阅读(2627) 评论(0) 推荐(0)
摘要: 原因:np.int 在 NumPy 1.20 中已弃用,在 NumPy 1.24 中已删除 AttributeError: module 'numpy' has no attribute 'int'. `np.int` was a deprecated alias for the builtin ` 阅读全文
posted @ 2023-05-09 15:26 VipSoft 阅读(5666) 评论(0) 推荐(1)
摘要: a=1 ~ n 的求和 $$ \sum_{a=1}^n a $$ 公式:(首项 + 末项) * 项数/2 如果 a=1、 n = 10 => (1+10)10/2 = 55 Python 代码 a = 1 n = 101 # 常规方法 sum = 0 for i in range(a, n): su 阅读全文
posted @ 2023-05-09 10:22 VipSoft 阅读(328) 评论(0) 推荐(0)
摘要: Markdown 数学公式: https://www.cnblogs.com/vipsoft/p/17141603.html $\sum$ ``` $\sum$``` 显示如下:不能正确显示数学公式 解决方案 文件 -> 偏好设置 -> Markdown 扩展语法 -> 全部选中 -> 关闭重新打开 阅读全文
posted @ 2023-05-08 14:11 VipSoft 阅读(303) 评论(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 阅读(1864) 评论(0) 推荐(0)
摘要: Intellij IDEA、 Pycharm 等开发工具,超过 竖线,Ctrl + L 格式化时,就会换行 , File -> Settings -> Editor -> Code Style -> Hard wrap at 值调整 ( 调到合适的值 ) 阅读全文
posted @ 2023-05-05 09:48 VipSoft 阅读(522) 评论(0) 推荐(1)
摘要: 百度飞桨(PaddlePaddle)-数字识别 在Pycharm中使用Matplotlib中的pyplot时,运行代码报错: MatplotlibDeprecationWarning: Support for FigureCanvases without a required_interactive 阅读全文
posted @ 2023-05-05 08:58 VipSoft 阅读(1033) 评论(0) 推荐(0)
摘要: SpringBoot 集成 SpringSecurity + MySQL + JWT 无太多理论,直接盘 一般用于Web管理系统 可以先看 SpringBoot SpringSecurity 基于内存的使用介绍 本文介绍如何整合 SpringSecurity + MySQL + JWT 数据结构 数 阅读全文
posted @ 2023-05-04 13:03 VipSoft 阅读(1583) 评论(0) 推荐(7)
摘要: SpringBoot 集成 Security 时,报 Encoded password does not look like BCrypt 原因:SecurityConfig 必须 Bean 的形式实例化 /** * 配置用户身份的configure()方法 * * @param auth * @t 阅读全文
posted @ 2023-05-03 20:46 VipSoft 阅读(953) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 57 下一页