Simon

Results 10 issues of Simon

![image](https://user-images.githubusercontent.com/93702453/141643967-cc85d139-8cff-4e46-b4dc-ec250e4fa1ef.png)

你好,我在复现论文时候,使用你的权重转到我复现的代码上可以达到你表述的精度,但是当我从头训练时候,始终差2-3个点精度,我在想是不是我学习率和batchsize设置的问题,论文中你的初始学习率是0.5,batchsize是128,请问一下这个是单卡的设置还是多卡的设置结果。

非常抱歉再一次打扰你,我在看label预处理时,看到 ![image](https://user-images.githubusercontent.com/93702453/146115711-c7211460-6a76-4cf7-b00a-34a99cf01c8a.png) # -- get text label label = ' '.join(line_splits[1:]) label = label.lower() 为什么每个字符中间要加一个空格,这和平常读取label的方法不太一样

请问模型在训练时候,是否用了efficient在imganet上的预训练权重

![image](https://user-images.githubusercontent.com/93702453/147028392-176a4613-4aa3-45a6-a314-8047367243bf.png) 单字符label不需要语义信息,但是也会经过这个函数,采样的change_id=0,imput_lable = imput_lable[:change_id] 责imput_lable=‘ ’,即像这样 ![image](https://user-images.githubusercontent.com/93702453/147029454-f05d187f-9c4d-4a7f-8149-8c935bcfc75d.png) 在训练过程中会发生错误 ![image](https://user-images.githubusercontent.com/93702453/147029500-44f5d263-55c7-4938-89b7-97d4c5e5e142.png)

![image](https://user-images.githubusercontent.com/93702453/146728922-067a29d8-25c0-4c53-ab29-d7197cd25001.png) 你好我用了readme给的测试集,但是我发现评测效果并没有论文表述的一样,请问一下我哪里操作有问题吗

![image](https://github.com/houtianze/bypy/assets/93702453/269b5e69-7a70-4d7f-89cc-e37366482dab)

https://github.com/cuiziteng/Illumination-Adaptive-Transformer/blob/main/IAT_high/IAT_mmdetection/mmdet/models/detectors/IAT_detector/IAT_yolo.py extract_feat函数和forward_train只初始化在init函数里面,实际上是不能够被反向传播的,我在extract_feat加了一行打印函数,训练过程中并没有打印。将extract_feat函数和forward_train移出init函数,作为IAT_yolo的成员函数,实际上是重写SingleStageDetecto的函数,这样extract_feat才会参与反向传播,打印日志。或者是我理解错了,请作者耐心解答一下。