ignore_index=-100 とか配列のインデックスから外れるような値を指定した場合に torch.nn.functional.cross_entropy(input, target, ..., ignore_index=-100, label_smoothing=1) の正解値 target にそのインデックスが入り込むと Out of bounds error が発生した (後述するがweightも指定してて、こっちのが重要)。 ignore_index=-255, label_smoothing=1, の時の torch.nn.CrossEntropyLoss.foward() の…