上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 49 下一页
摘要: ### 数字 $x$ 标量 $X$ 向量 $\Chi$ 矩阵 ![image](https://img2023.cnblogs.com/blog/80824/202305/80824-20230511150354001-583871474.png) ![image](https://img2023. 阅读全文
posted @ 2023-05-11 15:05 VipSoft 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 代码中设置断点。 在Debug Variables 里面,点击 View as Array 如下图所示: 阅读全文
posted @ 2023-05-11 10:54 VipSoft 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 张量(Tensor)、标量(scalar)、向量(vector)、矩阵(matrix) 飞桨 使用张量(Tensor) 来表示神经网络中传递的数据,Tensor 可以理解为多维数组,类似于 Numpy 数组(ndarray) 的概念。与 Numpy 数组相比,Tensor 除了支持运行在 CPU 上 阅读全文
posted @ 2023-05-11 09:03 VipSoft 阅读(961) 评论(0) 推荐(1) 编辑
摘要: 张量(Tensor)、标量(scalar)、向量(vector)、矩阵(matrix) Python Numpy 切片和索引(高级索引、布尔索引、花式索引) Python NumPy 广播(Broadcast) 张量(Tensor):Tensor = multi-dimensional array 阅读全文
posted @ 2023-05-10 23:16 VipSoft 阅读(2806) 评论(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 阅读(1097) 评论(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 阅读(1688) 评论(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 阅读(4705) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(190) 评论(0) 推荐(0) 编辑
摘要: Markdown 数学公式: https://www.cnblogs.com/vipsoft/p/17141603.html $\sum$ ``` $\sum$``` 显示如下:不能正确显示数学公式 解决方案 文件 -> 偏好设置 -> Markdown 扩展语法 -> 全部选中 -> 关闭重新打开 阅读全文
posted @ 2023-05-08 14:11 VipSoft 阅读(44) 评论(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 阅读(960) 评论(0) 推荐(0) 编辑
摘要: Intellij IDEA、 Pycharm 等开发工具,超过 竖线,Ctrl + L 格式化时,就会换行 , File -> Settings -> Editor -> Code Style -> Hard wrap at 值调整 ( 调到合适的值 ) 阅读全文
posted @ 2023-05-05 09:48 VipSoft 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 百度飞桨(PaddlePaddle)-数字识别 在Pycharm中使用Matplotlib中的pyplot时,运行代码报错: MatplotlibDeprecationWarning: Support for FigureCanvases without a required_interactive 阅读全文
posted @ 2023-05-05 08:58 VipSoft 阅读(732) 评论(0) 推荐(0) 编辑
摘要: SpringBoot 集成 SpringSecurity + MySQL + JWT 无太多理论,直接盘 一般用于Web管理系统 可以先看 SpringBoot SpringSecurity 基于内存的使用介绍 本文介绍如何整合 SpringSecurity + MySQL + JWT 数据结构 数 阅读全文
posted @ 2023-05-04 13:03 VipSoft 阅读(1160) 评论(0) 推荐(7) 编辑
摘要: SpringBoot 集成 Security 时,报 Encoded password does not look like BCrypt 原因:SecurityConfig 必须 Bean 的形式实例化 /** * 配置用户身份的configure()方法 * * @param auth * @t 阅读全文
posted @ 2023-05-03 20:46 VipSoft 阅读(461) 评论(0) 推荐(0) 编辑
摘要: java list 中的字符是否包括在另一个 list 中 ,::方法使用 阅读全文
posted @ 2023-05-02 23:15 VipSoft 阅读(111) 评论(0) 推荐(1) 编辑
摘要: MacOS 上您需要安装 unrar 以支持 PaddlePaddle,可以使用命令brew install unrar 执行命令后发现 brew 不存在 jimmy@MacBook-Pro ~ % brew install unrar zsh: command not found: brew ji 阅读全文
posted @ 2023-05-01 09:41 VipSoft 阅读(1042) 评论(0) 推荐(0) 编辑
摘要: SpringBoot 集成 SpringSecurity + MySQL + JWT 附源码,废话不多直接盘 SpringBoot已经为用户采用默认配置,只需要引入pom依赖就能快速启动Spring Security。 目的:验证请求用户的身份,提供安全访问 优势:基于Spring,配置方便,减少大 阅读全文
posted @ 2023-04-28 09:35 VipSoft 阅读(576) 评论(2) 推荐(3) 编辑
摘要: 安装KubeSphere最好的方法就是参考官方文档,而且官方文档是中文的。 官网地址:https://kubesphere.com.cn/ https://github.com/kubesphere/kubesphere/blob/master/README_zh.md Kubernetes(K8S 阅读全文
posted @ 2023-04-27 21:06 VipSoft 阅读(797) 评论(0) 推荐(0) 编辑
摘要: 使用 Kubeadm 部署 Kubernetes(K8S) 安装--附K8S架构图 Kubernetes(K8S) kubesphere 安装 官网地址:https://kubesphere.com.cn/ KubeSphere 是个全栈的Kubernetes容器云PaaS解决方案 KubeSphe 阅读全文
posted @ 2023-04-26 21:07 VipSoft 阅读(1591) 评论(0) 推荐(2) 编辑
摘要: Consider defining a bean of type 'org.springframework.security.authentication.AuthenticationManager' in your configuration. 阅读全文
posted @ 2023-04-25 14:49 VipSoft 阅读(1315) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 49 下一页