会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ruijiege
博客园
::
首页
::
博问
::
闪存
::
新随笔
::
联系
::
订阅
::
管理
::
公告
2022年10月22日
sigmoid做多分类问题
摘要: 做数字识别3,假设10个类别 3求sigmoid如上图的10个值 我们把对应的位置作为ont-hot编码就可以了 做sigmoid
阅读全文
posted @ 2022-10-22 19:54 哦哟这个怎么搞
阅读(26)
评论(0)
推荐(0)
余玄退火学习率
摘要:
阅读全文
posted @ 2022-10-22 19:51 哦哟这个怎么搞
阅读(14)
评论(0)
推荐(0)
逻辑回归
摘要: import numpy as np import matplotlib.pyplot as plt def sigmod(x): return 1/(1+np.exp(-x)) label = np.array([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
阅读全文
posted @ 2022-10-22 11:21 哦哟这个怎么搞
阅读(6)
评论(0)
推荐(0)
线性回归梯度下降法
摘要: import numpy as np import random x = np.array([0,1,2,3,4,5,6,7,8,9],dtype=np.float32) y = np.array([1.8,2.1,2.3,2.85,3.0,3.3,4.9,5.45,5.0,6.0]) k = ra
阅读全文
posted @ 2022-10-22 09:50 哦哟这个怎么搞
阅读(7)
评论(0)
推荐(0)
极大似然估计
摘要: 极大似然估计 我们希望误差最小更好 梯度下降就是逐渐靠近
阅读全文
posted @ 2022-10-22 09:33 哦哟这个怎么搞
阅读(8)
评论(0)
推荐(0)
iou,giou
摘要: 1.iou 两个框的交集重合 2.giou https://zhuanlan.zhihu.com/p/94799295?utm_source=wechat_session
阅读全文
posted @ 2022-10-22 08:47 哦哟这个怎么搞
阅读(6)
评论(0)
推荐(0)