Shuchen Du
Shuchen Du
Hi, I compared the model performance of both pytorch and lua. Pytorch model is trained 30 epochs while lua model is provided by the author. The same training data is...
Hi, I have some questions on the consistency of implementation of dropping and paper. 1) When you take the sum, you did not use absolute values as written in the...
Hi there, I tried to run the following command: cd $FRCN_ROOT/lib make but it cannot run. It is an issue of Cython? or something others?
Hi there, I tried to implement resnet and put it into Jupyter Notebook. https://github.com/shuuchen/pytorch_tutorials/blob/master/Deep%20Residual%20Network/drn.nbconvert.ipynb However in the final gragh, the model got overfitting terribly, where the training loss getting nearly...
Hi Thanks for your research. I think if there are more than one object inside an image, the distribution will generate more than one peak, which cannot be processed with...
Hi, The following error message happens on my cuda 10.1 machine. ```bash File "/home/shuchen/miniconda3/envs/cl/lib/python3.9/site-packages/torch/nn/modules/module.py", line 727, in _call_impl result = self.forward(*input, **kwargs) File "/home/shuchen/miniconda3/envs/cl/lib/python3.9/site-packages/torch/nn/modules/container.py", line 117, in forward input =...
In line 216 of networks.py, should you use += instead of = ?
Hi All, I am reading the code to understand it better. I find that in ssd.py, there is only one element in the aspect_ratios list while num_priors is 3. Shouldn't...
Hi All, Thanks for your great work and I tried this library and it works fine. It can detect big objects with high confidence values. The only problem now is...
Hi, I see that the new multi-head version doesn 't use resnet connection, which is different from former version. Nor did you use normalization. How do you think about this...