Rui

Results 11 comments of Rui

Let me create a Ubuntu VM to locate the error. :)

Those warnings are OK. What confused me is my Ubuntu 22 machine was stuck at loading ebpf modules. I will check this later. If you need to use foxear now,...

I bought one board that is produced in June 2020 but still got no output in the terminal while running both the original code and #267 code. However, I could...

Thanks. I have changed the language to Docker.

I wrote a layer 4 proxy named [fourth](https://github.com/KernelErr/fourth), and I initially tried [glommio](https://github.com/DataDog/glommio) as its runtime. Glommio is a thread-per-core async runtime based on io_uring, and it supports networking. Its...

Thanks for your reply. My SSH server will directly receive and send data from the TCP connection. The rendering work will happen in the client's terminal. So `/dev/tty` may be...

Currently, I just implemented `std::io::Write` trait for the SSH connection. So crossterm could send data to the client. I am finding a way to handle coming input.

切换成Notebook,单卡训练也出现此问题,训练集图片大约5w张图片,减少图片数量后不会报错

> 感谢反馈,我们先尝试复现一下 昨天又检查了一下,怀疑是图片格式的问题,原本的图片名中带有中文和日文,所以预处理的时候OpenCV用的下面的导出方法: ``` cv2.imencode('.png', image)[1].tofile(save_path) ``` 整个数据集有50k张图片, png格式的,5G大小。这样的数据会出现段错误。 如果将文件名改成纯数字,并且采用jpg格式,使用OpenCV的`imwrite`去导出,数据集只有1G大小,且不会出现段错误。

换为jpg格式后,训练到Iter 5000的时候,出现了一个错误: ``` [06/28 22:56:17] ppgan.engine.trainer INFO: Iter: 4950/800000 lr: 1.600e-03 l_d: 0.904 real_score: 3.060 fake_score: 0.183 l_g: 4.119 l_g_path: 0.003 path_length: 0.287 l_d_r1: 1.740 batch_cost: 1.70931 sec reader_cost: 0.00025...