我已经训练了一个神经网络来根据一些指标来预测曲棍球比赛的结果(赢/输)。我一直提供的数据如下所示:
Each row represents a team in one game, so two specific rows make a match.
Won/Lost Home Away metric2 metric3 metric4 team1 team2 team3 team4
1 1 0 10 10 10 1 0 0 0
0 0 1 10 10 10 0 1 0 0
1 1 0 10 10 10 0 0 1 0
0 0 1 10 10 10 0 0 0 1
The predictions from the NN looks like this.
[0.12921564 0.87078434]
[0.63811845 0.3618816 ]
[5.8682327e-04 9.9941313e-01]
[0.97831124 0.02168871]
[0.04394475 0.9560553 ]
[0.76859254 0.23140742]
[0.45620263 0.54379743]
[0.01509337 0.9849066 ]
我相信我明白第一列是Lost(0),第二列是Won(1),但我不明白的是:谁赢了谁?我现在不知道如何理解这些预测,它们甚至对我意味着什么?