tensorflow的resnet模型中的循环开始在哪里?

where is loop start in resnet model of tensorflow?

我打算用ResNet做一个分类任务,找tensorflow实现here,但是,作为tensorflow的新手,有些地方不明白。

  1. 它如何对批次示例进行抽样?
  2. 没有看到training loop子句,代码调用在哪里?
  3. 什么时候停止训练?只有代码bellow
  while not mon_sess.should_stop():
    mon_sess.run(model.train_op)

它怎么知道什么时候停止训练?

如有说明,将不胜感激

批处理在input reading code中决定。训练循环是您粘贴的代码(而不是 should_stop、运行 训练操作)。按照相同的输入处理代码,当输入耗尽时,它将停止训练。