jamesjjcondon

Results 7 comments of jamesjjcondon

I have the same two problems as @enderhsu - `--load_ckpt data/pretrained_model/resnet50_caffe.pth` throws `"net_utils.load_ckpt(model, checkpoint['model']) KeyError: 'model'"` and `--load_detectron data/pretrained_model/R-50.pkl` with "IMAGENET_PRTETRAINED_WEIGHTS" in "e2e_mask_rcnn_R-50-C4_1x.yaml" changed to "data/pretrained_model/R-50.pkl" throws ``` "File "/mnt/gypsum/home/zhanxu/Proj/mask-rcnn.pytorch/lib/utils/detectron_weight_helper.py",...

Got testing with `--cfg configs/baselines/e2e_faster_rcnn_R-50-C4_1x.yaml --load_detectron data/pretrained_model/model_final.pkl` from https://github.com/facebookresearch/Detectron/blob/master/MODEL_ZOO.md thanks @vsd550 . Plus ``` 'RESNETS': {'FREEZE_AT': 2, 'IMAGENET_PRETRAINED_WEIGHTS': 'data/pretrained_model/resnet50_caffe.pth' Had to adjust for memory with my machine in .yaml at:...

FYi https://bugs.launchpad.net/ubuntu/+source/python-distutils-extra/+bug/1892159

I'm having a similar issue trying to create a virtualenv with python3.7 on Ubuntu 20.04. Not missing python3.9-distutils. and python3.7-distutils not available. Above didn't help. Have got working on machine...

Don't know how but removing and purging python3.7 and reinstalling from deadsnakes seems to have fixed

I think I have the same problem. Can work up to a PR but would need a few pointers. My /tmp in root directory is the one filling up with...

FYI, my work around for my use case (large gray-scale images): ```python x = np.linspace(0, 65535, 1000, dtype=np.uint16) image = np.tile(x, (1000, 1)).T plt.imshow(image) plt.show() im32 = image.astype(np.int32) pil =...