Results 4 issues of Hewen Deng

Source code link: https://github.com/zzh8829/yolov3-tf2/blob/master/yolov3_tf2/dataset.py#L115 ``` paddings = [[0, FLAGS.yolo_max_boxes - tf.shape(y_train)[0]], [0, 0]] y_train = tf.pad(y_train, paddings) ``` In addition, **FLAGS.yolo_max_boxes** I did not find the assignment statement > Can...

When I remove the image segment during the encoder phase, I'll be prompted for the following error when training: ![image](https://user-images.githubusercontent.com/50670682/134631450-8c9477cf-6ce7-4aeb-93d1-cdeffff888f9.png) However, when only 【[images=self.cnn(images) ](https://github.com/wenwenyu/PICK-pytorch/blob/master/model/encoder.py#L117)】 is not annotated, the program...

在文件Deep_Learning_with_TensorFlow/1.4.0/Chapter06/LeNet-5/LeNet5_train.ipynb里有如下语句: **y = LeNet5_infernece.inference(x,False,regularizer)** 其中第二个参数在训练时应该是**True**吧?

按mnist_eval.py样例运行给出的代码实际输出结果: ``` After 29001 training step(s), validation accuracy = 0.9852 After 29001 training step(s), validation accuracy = 0.9852 After 29001 training step(s), validation accuracy = 0.9852 ...... ``` 应该输出的结果是: ```...