GlockPL

Results 10 comments of GlockPL

I managed to find a way to solve this. You need to comment Line 42 in file srgan.py: x = upsample(x, num_filters * 4). One of the upscaling layer, this...

Ok, so I tried wrapping tensor in unique_pointer but the moment I want to perform some action on it I get this compile error: `Error C2280 'std::unique_ptr::unique_ptr(const std::unique_ptr &)': attempting...

Ok so here is my code, part of the DLL that is loaded to the software It works fine, it just blocks the software from shuting down, like something is...

I don't think this is a model problem, yet. If you reduce the code just to this: atl::Array inImageArray; atl::Array inColors; ReadInput(L"inImageArray", inImageArray); ReadInput(L"inColors", inColors); int width = inImageArray[0].Width(); int...

I tested load model example and it also freezes during exit of the software

I copied the example into minimal code needed to run it as dll inside Adaptive Vision Software.

I don't think this is the issue. Because the software freezes already after first operation on tensor. Besides that I changed session deleter according to [#131 ](https://github.com/serizba/cppflow/issues/131) and it still...

OK, thank you

Worked for me on pytorch 1.4.0. I tested it on google colab.

This is my code from colab: `!pip install torch==1.4.0 torchvision==0.5.0` `!git clone https://github.com/sunwj/CAR.git` `%cd ./CAR/ !ls` `%cd adaptive_gridsampler/ !ls` `!python3 setup.py build_ext --inplace` Last part is crucial because you need...