Major features and improvements - `molgraph.applications` - Adding an application (`proteomics`). Applications are somewhat experimental to begin with and thus potentially subject to changes. See application README for updates.
0.6.16
Minor features and improvements
- `molgraph.models.interpretability` - `Saliency` takes a new argument, `absolute` (True/False), which decides whether the gradients should be absolute or not. Namely, if `absolute=False` (which is default), saliency values will be both negative and positive.
0.6.15
Major features and improvements
- `molgraph.layers` - `SuperNodeReadout` added. This layer extracts "super node" features based on an indicator field. Basically, it performs a boolean_mask on node features resulting in a `tf.Tensor` of shape (n_subgraphs, n_supernodes, n_features). This tensor can then be inputted to a sequence model such as an RNN.
0.6.14
Bug fixes - `molgraph.models.interpretability` and `molgraph.layers.gnn` - `GradientActivationMapping` now behaves as expected, when using `GNN`. A private method was implemented that "watches" the intermediate inputs.
0.6.13
Major features and improvements - `molgraph.layers` - The default kernel initializer is now again 'glorot_uniform'. This is the default kernel initializer for `keras.layers.Dense` and seems to work well for the GNN layers as well. To use set the previous default kernel initializer, specify `kernel_initializer=keras.initializers.TruncatedNormal(stddev=0.005)`.
0.6.12
Major features and improvements
- `molgraph.layers` - A GNN layer ("`GNN`") is implemented to combine the output of the last GNN layer as well as all the intermediate GNN layers. Simply pass a list of GNN layers to `GNN`: (`GNN([..., GINConv(128), GINConv(128), ...])`) and pass it as a layer to e.g. `keras.Sequential`.