Thomas Jager
Thomas Jager
I have run into the same issue. It makes validating my inference code based on opencv a real hassle. We are not the first people running into this. It seems...
Found some more info here: https://github.com/python-pillow/Pillow/issues/2718#issuecomment-333669547
Just for fun i tried to use resize before blobFromImage with cubic interpolation. With cubic i get very close to my pytorch inference scores. cv is off by 0.005-0.01 instead...
I started testing on a different model of mine and it all fell apart again. This model is not normalized so it should be even easier to get the same...
Example Pytorch default resize:  OpenCV Inter_AREA:  So the differences are quite large even visually. The file size for the pytorch PNG is 84kb while the OpenCV one is...
About specifying host. I get these errors if i change the rdp file: 2021/05/18 09:30:26 Client specified host 172.16.4.11:3389 does not match token host any 2021/05/18 09:30:26 Not allowed to...
Weird. I tried with Lua 5.1.5 and got the above deprecated message. ``` tj@ami:~$ lua test.lua lua: test.lua:7: nesting of [[...]] is deprecated near '[' tj@ami:~$ lua -v Lua 5.1.5...
Hmm yeah this is a quite interesting issue. The best in my opinion would be a warning.
```patch diff --git a/NeoLua/LuaDebug.cs b/NeoLua/LuaDebug.cs index 9c0ed6a..9249f74 100644 --- a/NeoLua/LuaDebug.cs +++ b/NeoLua/LuaDebug.cs @@ -196,7 +196,12 @@ namespace Neo.IronLua } // func LineProgressExpression protected override Expression VisitBlock(BlockExpression node) - => base.VisitBlock(Expression.Block(node.Type,...
I don't know what to tell you. I've tested it with 5.5 and I've not seen this problem. a bit more information is necessary.