Kemaweyan

Results 4 issues of Kemaweyan

This is MUCH faster implementation of the **reshapeList** function. My [SSD](https://arxiv.org/abs/1512.02325) model has output shape [3012, 23], so inner for-loop invokes 3012x2 calls to the **splice** method that makes the...

When I use the MinExpirationPickableCache as ``` cache = dns_cache.MinExpirationPickableCache(filename="dns.pickle", min_ttl=1000) dns_cache.override_system_resolver(cache=cache) ``` it works, but when script is finished it shows the following error: ``` Exception ignored in: Traceback...

When I try to create the **NoExpirationPickableCache** object, it shows this error: ``` >>> cache = dns_cache.NoExpirationPickableCache() AttributeError: 'NoExpirationPickableCache' object has no attribute 'filename' ```

This code does not work ```import dns_cache import requests dns_cache.override_system_resolver() for i in range(10): requests.get('http://www.coala.io/') ``` It does not speed up requests but makes them even slowly. Looking into the...