
机器学习
代维7
这个作者很懒,什么都没留下…
展开
-
线性回归Python(梯度下降法)
线性回归原创 2022-07-09 20:56:34 · 436 阅读 · 2 评论 -
yolov5
yolov5原创 2022-06-11 23:37:02 · 157 阅读 · 0 评论 -
Towards End-to-End Lane Detection: an Instance SegmentationApproach
Towards End-to-End Lane Detection: an Instance Segmentation Approach原创 2022-06-11 23:33:24 · 205 阅读 · 0 评论 -
SVM(Python代码)
# sklearn 库中导入 svm 模块from sklearn import svm# 定义三个点和标签X = [[2, 0], [1, 1], [2,3]]y = [0, 0, 1]# 定义分类器,clf 意为 classifier,是分类器的传统命名clf = svm.SVC(kernel = 'linear') # .SVC()就是 SVM 的方程,参数 kernel 为线性核函数# 训练分类器clf.fit(X, y) # 调用分类器的 fit 函数建立模型(即计算出划分.原创 2022-04-23 17:52:20 · 11818 阅读 · 0 评论