delzac

Results 9 issues of delzac

Added in a new sequence layer, Quasi-Recurrent Neural Network.

Allow the initialisation of the kernel weight to be directly initialised by a numpy array, in line with the documentation of Dense layer. Previously, before this amendment, there is a...

Hi, fyi for anyone who gets NaN during training with a model that uses `LayerNormlization `. The current implementation in cntk has an edge case that causes `NaN`: ``` def...

``` import cntk as C a = C.sequence.input_variable((3, 32)) b = C.layers.SequentialConvolution(filter_shape=(3, 3), num_filters=16, activation=C.relu, pad=True, strides=2)(a) c = C.layers.GlobalMaxPooling()(b) c = C.squeeze(c) print(c.shape) c.save('test.cntk', C.ModelFormat.CNTKv2) c.save('test.onnx', C.ModelFormat.ONNX) ``` `RuntimeError:...

**Template instructions** If you use `account.decorators.login_required`, it imports `from django.utils.decorators import available_attrs` ` available_attrs` is not present in Django 3.0 **Describe the bug** ImportError: cannot import name 'available_attrs' in Django...

Bug

`` In the above test code, i try to convert a string into a number. This returns a NaN, but it doesn't evaluate as `empty`. I'm wondering if this behaviour...

Previously, NGINX caching will ignore any query parameters in the URI. Pull request on advise from #386

``` PIKU_INTERNAL_NGINX_CACHE_MAPPING = """ location ~* ^/($cache_prefixes) { uwsgi_cache $APP; uwsgi_cache_min_uses 1; uwsgi_cache_key $host$uri; uwsgi_cache_valid 200 304 $cache_time_content; uwsgi_cache_valid 301 307 $cache_time_redirects; uwsgi_cache_valid 500 502 503 504 0s; uwsgi_cache_valid any...

Want to share some tips on self-hosting SSOReady for those that are thinking of it. The [steps listed in their docs](https://ssoready.com/docs/self-hosting-ssoready) are correct, except there needs to be a few...