Andrew Jong

Results 26 comments of Andrew Jong

I figured it out! Seems like 128x128 input is too small for the model to detect. I had to manually scale them up to 512x512 before hand. That said, it...

@mohomran ?

Hi all, I managed to open Blocks.uproject on my machine. UE4.27 on Ubuntu 18.04. 1. Cloned UnrealEngine to `~/UnrealEngine`. Cloned AirSim to `~/AirSim` 2. Cleaned the UBlocks project `cd ~/AirSim/Unreal/Environments/Blocks...

@aliadeeba98 , based on the backslashes in your path, it looks like you're on Windows. The instructions I wrote are for Linux. However perhaps it will still work if you...

`mono` should let you run the `.exe` in Linux

I get the following compile error when running `./travis.sh` ``` .conda/envs/pt0.4/lib/python3.7/site-packages/torch/utils/ffi/../../lib/include/THC/THCGeneral.h:12:10: fatal error: cuda.h: No such file or directory #include "cuda.h" ```

Nevermind, got it to compile by symlinking the include files from my cuda install location. ``` ln -s /opt/cuda/include/* ~/.conda/envs/pt0.4/lib/python3.7/site-packages/torch/utils/ffi/../../lib/include/THC/ ```

I now get this error in python after running travis.sh: ``` >>> from prroi_pool import PrRoIPool2D Traceback (most recent call last): File "/home/user/Development/PreciseRoIPooling-master/pytorch/prroi_pool/functional.py", line 16, in from . import _prroi_pooling...

Is this related? https://github.com/pytorch/pytorch/issues/6932#issuecomment-384692621 Says to try using Python 3, or implement your own quick fix a couple comments down.

@medhini can you explain more what you linked with the -l argument, please? Which paths did you specify?