PyTorch-Encoding
PyTorch-Encoding copied to clipboard
A CV toolkit for my papers.
After reading this paper, I was interested in the proposal of visual center in the paper, but I could not find the corresponding code of the specific part? How to...
Hi! I want to test the segmentation result on the VOC 2012 test set, but I need to upload the test results to the official website. I don't know what...
Hi, dependency: pytorch 1.4.0, CUDA 10.2 Pytorch_encoding master branch the following code is run on single GPU( GeForce RTX 2080, 8GB): ` CUDA_VISIBLE_DEVICES=0 python train_dist.py --dataset PContext --model EncNet --aux...
How long will it cost for taining on PASCAL-Context dataset? And the config of your device
``` Traceback (most recent call last): File "scripts/prepare_pascal.py", line 6, in from encoding.utils import download, mkdir File "/home/szy/PyTorch-Encoding/encoding/init.py", line 13, in from . import nn, functions, parallel, utils, models, datasets,...
 大佬求解
Traceback (most recent call last): File "train_dist.py", line 346, in main() File "train_dist.py", line 114, in main mp.spawn(main_worker, nprocs=ngpus_per_node, args=(ngpus_per_node, args)) File "/home/user05/.conda/envs/open-mmlab1/lib/python3.7/site-packages/torch/multiprocessing/spawn.py", line 171, in spawn while not spawn_context.join():...
hi I trained atten model and I used train_dist file for the training when I want to test the model using the trained atten model some errors occurred: can u...
hi,can you provide a pre-training weight of resnet50 , i can't find it online
I noticed that a lot of your code is written like this ```python nn.ReLU(True), nn.Dropout(0.1, False), ``` why you use inplace operator in activation fuction but not in dropout? Does...