问题描述:RuntimeError: multi-target not supported at
1.交叉熵函数target并不需要是one-hot格式,只需要是[1,2,3,4,5,6,7]之类。应该注意其中(3450,1)应该变为(3450,)
import numpy as np
labels = labels.T[0]
1.交叉熵函数target并不需要是one-hot格式,只需要是[1,2,3,4,5,6,7]之类。应该注意其中(3450,1)应该变为(3450,)
import numpy as np
labels = labels.T[0]