0%

Softmax vs A-softmax Loss

Softmax loss is typically good at optimizing the inter-class difference (separating different classes), but not good at reducing the intra-class variation (making features of the same class compact). Additive Margin Softmax is a novel and more interpretable way to import the angular margin into the softmax loss.

阅读全文 »

mask_fill 是 PyTorch 中的一个函数,用于根据给定的条件(掩码)对张量中的元素进行填充。掩码是一个布尔值张量,指示哪些元素需要被填充。

阅读全文 »

概述

卷积神经网络(CNNs)是一类专门用于处理结构化网格数据(如图像)的神经网络。CNN通过局部连接性和参数共享来有效提取层次化的特征。

阅读全文 »