Frank A. Krueger

Results 171 comments of Frank A. Krueger

I've had a request/need for them too. In this issue: https://github.com/praeclarum/sqlite-net/issues/382 Also pragma commands don't seem to like to be parameterized so it would be nice to have this to...

If the binding is difficult, perhaps you can just expose the simplest overload that would let us execute `sqlite3_mprintf("%u", unsafeString)` - an overload that expects two strings. This is the...

Hi, I'm new to node and this was tripping me up. I just want to note that @Narsil's solution works. When I dialed my node back to 14 the download...

Hello, thank you for getting back to me. My example is a little long so I wrote this minimal repro that reproduces the same error. ```python import tensorflow as tf...

Thanks. It's unfortunate that the alternatives don't convert either. For example, when I use tensorflow_addons: ```python import tensorflow as tf import tensorflow_addons as tfa import tensorflow.keras as keras x =...

The final res1 and skip convolutions have `stride=2` which accomplishes the downsampling that the Average Pooling does in the original. This is indeed a change from the paper. I am...

Oh fascinating - I hadn't considered a need for this. What is the difference between the local attributes and just using normal object properties? Could you give me a rough...

If the data does not need to be transferred to the server, wouldn't it be better to just use normal C# properties in subclasses? ```csharp class MyDiv : Div {...

In general, I'm OK with more samples but this one is a little heavy so I'm curious which scenarios it covers that the others do not.