Chunyan She

Results 6 issues of Chunyan She

老师,您好,您在代码中使用了ImagePool,请问这个类的作用是什么哇?

Hello, EnlightenGAN's last experiment validated that it can improve the performance of recognition on the ExDark dataset. ExDark contains 12 object classes (Bicycle, Boat, Bottle, Bus, Car, Cat, Chair, Cup,...

作者,您好。我在使用一些评价指标的时候,多次运行时,发现对同一张图的评价结果是不一样的。例如:采用hyperiqa对一张图评价,发现每次运行的结果不一样。请问这是正常情况吗?还有一些其他指标同样存在这种情况。例如:maniqa、tres、tres-flive等。 其代码如下: ```python image_path= './temp.png' for i in range(10): evaluator = pyiqa.create_metric('hyperiqa') value = evaluator(image_path) print(value) pass ``` 上述代码的运行结果为: ```python tensor([[0.7532]], device='cuda:0') tensor([[0.7455]], device='cuda:0') tensor([[0.7435]], device='cuda:0') tensor([[0.7538]], device='cuda:0') tensor([[0.7471]], device='cuda:0')...

Hello, thank you very much for open source code. What is the function of the BFF module designed in this paper? I read the description of the BFF module in...

您好,请问您方便分量一份关于论文图1(a)的代码吗?可视化Phase和Amplitude分量,并且交换低光照和正常光照的Amplitude之后,再次还原回低光照和正常光照。期待您的回复,十分感谢。邮箱:[email protected] ![image](https://github.com/wangchx67/FourLLIE/assets/49888862/e3b558b4-c598-492f-b452-390e09c54373)

作者,您好。感谢您开源了这个工具。在使用sshpass发现了一个问题。 windows11操作系统。使用sshpass -p "xxx" ssh [email protected]进入一个ubuntu服务器时候,我继续在终端里面输入watch -n 1 nvidia-smi来查看当前服务器的显存使用情况。看完了之后,我使用ctrl + C退出这个查看情况。如果是正常使用ssh进入的话,这个时候使用ctrl+C会退出显存使用情况,并且还能继续停留在服务器中。但是我用sshpass登录服务器的时候,使用了ctrl+C会提示我Terminate batch job (Y/N)?。无论输入Y,还是N,它是直接退出服务器,而无法继续停留在服务器中,想要进来,又需要重新使用sshpass命令进入服务器。