您的当前位置:首页[tf]tensorflow模型调试的方法Debug的方法

[tf]tensorflow模型调试的方法Debug的方法

2024-12-12 来源:哗拓教育

最为方便的还是在训练的sess.run()的时候把报错的部分写在run()函数里面,然后返回打印出来。

 loss, train_op, lengths, trans, global_step, learn_rate = sess.run(
                [self.model.loss, self.model.train_op, self.model.lengths, self.model.trans, self.model.global_step,
                 self.model.lr], self.feed_dict)
显示全文