Sebastian Wahl

Results 39 comments of Sebastian Wahl

I have tried to make a numpy implementation of ExtractImagePatches: ```python def numpy_eip(arr, ksizes, strides, rates, padding): sizes = [1, ksizes[1]*rates[1] - (rates[1]-1), ksizes[2]*rates[2] - (rates[2]-1), 1] if padding ==...

I have done a quick test with my `ksizes = [1, 3, 3, 1], rates = [1, 1, 1, 1], strides = [1, 1, 1, 1], padding = 'VALID'` case...

Minimal effort test without batch handling, seems to work, and down to 1 KiB with a [9, 1, 3, 3] kernel: [eip_valid.zip](https://github.com/onnx/tensorflow-onnx/files/6689594/eip_valid.zip) This is using a reshape however which I...

That is really useful, I could fix the rest of the Reshapes in my model using that as well. I have not yet looked at how this Conv approach works...

@TomWildenhain-Microsoft Thanks for the pointers, I will give it a go.

@TomWildenhain-Microsoft I'm sorry about the lack of updates, no, I have not looked at it yet. However I have next week off, so I will not have an excuse now...

@savvaki No, not anything else than I looked into the `dilations` parameter and that it should be possible to use that to implement `rate`. To sum up, the current status...

Perhaps also change names of ARender and AImageAligner classes to Render_/Aligner_ instead of _Render/_Aligner ?

It did not crash due to being unable to read the frames, it threw an exception upon reaching the end and the importer dialog did not handle this, causing the...

First of all: 1. You are using a very old version of Overmix, try out the newest 'pre-release' on the releases page. I probably shouldn't have marked them as pre-releases...