in count_softmax nfeatures = x.size()[m.dim] TypeError: tuple indices must be integers or slices, not NoneType
时间: 2023-10-29 10:56:38 浏览: 184
这个错误是由于在 `count_softmax` 函数中,使用了一个空的维度索引 `m.dim`,导致出现了 `TypeError: tuple indices must be integers or slices, not NoneType` 错误。请确保 `m.dim` 的值不为空,并且是一个整数或切片类型的索引。你可以检查一下代码中是否有缺少或错误的维度索引。如果需要进一步帮助,请提供相关代码片段。
阅读全文