Douglas Blank
Douglas Blank
Should not create error where there is a masked value.
Currently: ``` [-------pad-------][-------BANK------][------pad--------] [---pad---][---BANK---][---pad---][---BANK---][---pad---] ``` But should be: ``` [---pad----][-------BANK------] [---BANK---][-------pad-------][---BANK---] ``` Need to left-justify after finding minimum left padding, and then distribute that to rest of padded areas.
Would make this much faster for larger datasets.
Notes, like the following, deserve to live somewhere: Conx builds models between any two banks that have fully activated incoming pathways. Therefore, Network.propagate_from() won't work if you attempt to propagate...
```python from . import imdb from . import reuters from . import boston_housing from . import fashion_mnist ```
Currently, plot_results plots every single epoch, which can be quite noisy and take too long. Better would be to allow a step, and to automatically set step as the number...