import numpy as npdef softmax(x): """ softmax function """ # assert(len(x.shape) > 1, "dimension must be larger than 1") # print(np.max(x, ...
確定! 回上一頁