相关文章
matplotlib 笔记:plot 折线图
1 基本用法
import numpy as np
import matplotlib.pyplot as plt
x np.linspace(0,10,50)
y np.tan(x)**2 np.cos(x)plt.plot(x, y)
plt.show() 2 linestyle 折线图类型 import numpy as np
import matplotlib.pyplot as pltx np.linspace(0,10,50)
y np.tan(x)**2 np…
建站知识
2024/10/27 21:56:52
关于使用pycharm遇到只能使用unittest方式运行,无法直接选择Run
相信大家可能都遇到过这个问题,使用pycharm直接运行脚本的时候,只能选择unittest的方式,能愁死个人 经过几次各种尝试无果之后,博主就放弃死磕了,原谅博主是个菜鸟
后来遇到这样的问题,往往也就直接使用cm…
建站知识
2024/10/25 11:33:28
A2C原理和代码实现
参考王树森《深度强化学习》课程和书籍 1、A2C原理: Observe a transition: ( s t , a t , r t , s t 1 ) (s_t,{a_t},r_t,s_{t1}) (st,at,rt,st1)
TD target: y t r t γ ⋅ v ( s t 1 ; w ) . y_{t} r_{t}\gamma\cdot v(s_{t1};\mathbf…
建站知识
2024/10/26 17:16:17
EasyPoi导出 导入(带校验)简单示例 EasyExcel
官方文档 : http://doc.wupaas.com/docs/easypoi
pom的引入:
<!-- easyPoi--><dependency><groupId>cn.afterturn</groupId><artifactId>easypoi-spring-boot-starter</artifactId><version>4.0.0</version></dep…
建站知识
2024/11/30 20:49:27
WEB集群——LVS-DR 群集、nginx负载均衡
1、基于 CentOS 7 构建 LVS-DR 群集。 2、配置nginx负载均衡。 一、 LVS-DR 群集
1、LVS-DR工作原理
LVS-DR(Linux Virtual Server Director Server)
名称缩写说明 虚拟IP地址(Virtual IP Address) VIPDirector用于向客户端计算机提供服务的IP地址真实…
建站知识
2024/10/26 8:29:32
springboot 报错处理(长期更新 2023.8.10)
目录 一、HTTP 相关1.1、 数据传输方面1.1.1、 HttpMessageNotWritableException1.1.1.1、 springboot + stomp 场景一、HTTP 相关
1.1、 数据传输方面
1.1.1、 HttpMessageNotWritableException
1.1.1.1、 springboot + stomp 场景 报错内容: 使用 spring boot 和 stomp 服…
建站知识
2024/10/27 3:08:07
Linux 搭建Minio
第一步:创建:/xxx/xxx/minio 第二步:在创建:/xxx/xxx/data
第三步: Minio下载网址: https://min.io/download#/linux 然后将这个文件放入你刚刚创建的文件夹
第四步:配置环境变量把Minio的账号密码配置一…
建站知识
2024/10/28 19:47:00