Loading

摘要: SpringBoot 将属性配置中的url更改为阿里云的公网IP spring.datasource.url=jdbc:mysql://ip:3306/test1?serverTimezone=Asia/Shanghai&allowMultiQueries=true 注意此处仍然使用3306端口(需 阅读全文
posted @ 2020-11-15 16:50 lixin2020 阅读(1083) 评论(0) 推荐(0)
摘要: 线性回归 import numpy as np N=100 x1 = np.random.randn(N) x2 = np.random.randn(N) alpha = 1 sigma = 1 beta = [1,2.5] y = alpha + beta[0]*x1 + beta[1]*x2 + 阅读全文
posted @ 2020-11-15 01:10 lixin2020 阅读(2057) 评论(0) 推荐(0)