Steven Edwards
Steven Edwards
I tried using `PIXI.TextMetrics.measureText`, but no luck. Is there a simple way to make this work?
@DTVD if you're okay with the PR suggested in https://github.com/DTVD/rainbowstream/issues/199#issuecomment-255689910 ... here you go. :smiley: rainbowstreamをありがとうございました.
Implement `PriorityQueue` interface using PostgreSQL; MySQL is optional for now. Inspired by: https://github.com/gree/futurama
This PR's base is #75, so 75 should be merged first.
If anyone's working on adding it already, please speak up. :) `image/draw`'s private `drawGlyphOver` [func](https://github.com/golang/go/blob/master/src/image/draw/draw.go#L461) could be a good starting point.
Does this work as efectively as the original? Testing will let us know.
See: https://arxiv.org/abs/1710.09829v2 and https://www.oreilly.com/content/introducing-capsule-networks/ They are supposed to provide better results with fewer training examples. I'm going to translate your updated `TF2` version to a CapsNet and see if it...
Is there a benefit to extending `nn.Sequential` instead of, e.g.: ```python class _DenseBlock(nn.Module): def __init__(self, num_layers, input_features, out_features): super(_DenseBlock, self).__init__() for i in range(num_layers): layer = nn.Sequential(['conv/bn/relu/conv/bn']) # Swapped for...