深度学习
文章平均质量分 65
DEDSEC_Roger
语音算法,说话人识别,Python,C++。
展开
-
pdb/ipdb 调试 Python 注意事项
【代码】pdb/ipdb 调试 Python 注意事项。原创 2024-05-13 10:37:04 · 198 阅读 · 0 评论 -
深入理解Self-attention(自注意力机制)
输入的特点是一个向量序列序列的长度是可变的例如:对于音频数据,STFT之后,得到每个帧的特征,这些帧在时间维度上构成序列输出类型有三种对序列中的每一个向量,都有一个对应的输出,比如说要对一段语音里的每个词,都判断词性。此时输出序列和输入序列长度相同只需要输出一个向量,比如说话人识别、音频事件分类输出序列的长度不能确定,比如语音识别、机器翻译接下来专注于介绍第一种输出类型,这种任务通常被称为序列标注(Sequence Labeling)原创 2022-12-21 16:30:22 · 1927 阅读 · 0 评论 -
CosineAnnealingLR(余弦退火调整学习率)
这是一种学习率的调整方式。原创 2022-08-16 16:36:45 · 14096 阅读 · 0 评论 -
从零开始的深度学习
top-1 error rate:取最后概率向量里面最大的那一个作为预测结果,预测结果中概率最大的那个类必须是正确类别才算预测正确,top-5 error rate:取最后概率向量里面最大的前五名作为预测结果,预测结果中出现了正确概率即为预测正确。...原创 2021-11-26 11:06:01 · 469 阅读 · 0 评论 -
Multinomial Distribution(多项式分布)
The multinomial distribution is a generalization of the binomial distribution.In the binomial distribution there are only two possible outcomes on any one individual trial, and we labeled those success and failure. In the multinomial distribution, the num原创 2021-12-03 16:17:09 · 1579 阅读 · 0 评论 -
CIFAR-100 top1 and top5 err statistics
dataset network params top1 err top5 err epoch(lr = 0.1) epoch(lr = 0.02) epoch(lr = 0.004) epoch(lr = 0.0008) total epoch原创 2022-02-01 16:04:56 · 4570 阅读 · 3 评论