- Finished core features:
- Attention Mechanism
- Diffusion Graph Convolution
- GRU based on the above
- reimplementation of the model used in https://milets19.github.io/papers/milets19_paper_8.pdf
- Wrote README.md
- Added requirements
- uploading to TestPyPi
- fixing README.md
- removed pyscaffold spam from setup.cfg
- uploading to TestPyPi and testing if it installs correctly
- Final upload to real pypi and final test
- All good. Ready for release.
- fixing naming bug where we could not use more than one AttentionMechanism due to all such mechanisms having the same name but names need to be unique.
- Added RaggedTensorFeeder utensil that is able to feed a ragged tensor as
data to an RNN model that can only train on non ragged batches.
- Fixed using an average layer for only one attention head.
- Fixed issue with many weights not being trained due to kwargs being passed to the parent object in the layer definitions.