- 博客(5)
- 收藏
- 关注
原创 Python安装libMR包
openset-recognition中常使用EVT模型,在Python中libMR包能够帮助我们实现EVT模型。
2023-08-27 16:34:56
1513
2
原创 python感知机代码实现
《统计学习方法》感知机代码实现# 感知机实现import numpy as np#数据x = np.array([[3,3],[4,3],[1,1]])label = np.array([1,1,-1])yita = 1#步长w = np.array([0, 0])#初始化wb = 0#初始化b#第一步,求出初始值时的各个点的预测值,便于观察是否误判def y_predict(w): y_pre = (np.dot(x,w.T)+b)*label.T return
2021-10-11 19:37:01
206
1
原创 pandas菜鸟教程思维导图
菜鸟教程pandas的思维导图总结链接:https://pan.baidu.com/s/1h6y9vcxI17WF-sv1ezChdA提取码:7fgq参考网站:https://www.runoob.com/pandas/pandas-tutorial.html
2021-10-09 14:59:59
341
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人