x_2 = x_1[::len(loss_record['train']) // len(loss_record['dev'])]
// 代表整除
步进13
所以
等价于
x_2 = x_1[::13]
range(0, 9035, 13)