Chen Yuhan

Results 10 comments of Chen Yuhan

I solve this following [#1748](https://github.com/NVIDIA/apex/issues/1748#issuecomment-1928910265).

> I solved this problem, in the file [https://github.com/KaihuaTang/Scene-Graph-Benchmark.pytorch/blob/master/INSTALL.md](url),the author wrote down this code > > ```python > # install PyTorch Detection > cd $INSTALL_DIR > git clone https://github.com/KaihuaTang/Scene-Graph-Benchmark.pytorch.git >...

> Hi, > > The version of the code in this repo is very outdated and is indeed not up-to-date with current CUDA standards. I fixed all of those issues...

I am using `pytorch=1.13` and `torchvision=0.14`. I can import `torchvision.datasets` as you did, but when I run the scripts to conduct sgdet on custom images, the error came up. it...

I clean and create a new env many times. But the error still come up. And I also did `python setup.py build develop` every time. Many people also have this...

outputs of `pip freeze | grep torchvision`: ```torchvision==0.14.1``` outputs of `conda list | grep torchvision`: ```torchvision 0.14.1 py38_cu117 pytorch```

Still don't work. This time I create a new env and use `pip install torch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 --index-url https://download.pytorch.org/whl/cu117`. But the error still come up.

It is OK, thanks for your help. I will keep finding the solution.

## Some common problems & solutions when installing maskrcnn_benchmark. **1. THC.h: No such file or directory/THCeilDiv Undefined/** [see this](https://blog.csdn.net/code_zhao/article/details/129172817) **2. identifier "THCudaCheck" is undefined** [see this](https://blog.csdn.net/weixin_46559271/article/details/128781665) **3. `torch.utils.cpp_extension.load` stuck** [see...

actually, the code is correct. the formula of EMA is (suppose the weight beta=0.9): new = beta * old + (1-beta) * current the new average should be "a lot...