-------------------
- Slightly changed the generation process of the "rb_adv_motifs" dataset.
- Added the class of experiments based on ``experiments.csv_sanchez_lengeling_dataset.py``, which convert
the datasets from the paper into a single CSV file, which can then be further processed into a visual graph
dataset.
- Added utility function ``util.edge_importances_from_node_importances`` to derive edge explanations from
the node explanations in cases where they are not created.
- Started to move towards the new pycomex Functional API with the experiments
- Added more documentation to ``typing``
Model Interfaces and Mixins
- Added the ``visual_graph_datasets.models`` module which will contain all the code which is relevant for
models that specifically work with visual graph datasets
- Added the ``models.PredictGraphMixin`` class, which is essentially an interface that can be implemented
by a model class to signify that it supports the ``predict_graph`` method which can be used to query a
model prediction directly based on a GraphDict object.
Examples
- Added a ``examples/README.rst``
- Added ``examples/01_explanation_pdf``