Releases: waikato-datamining/seppl
Releases · waikato-datamining/seppl
Release list
Release v0.0.9
- the registry now inspects modules when custom modules were supplied even when it already found plugins (eg default ones)
Release v0.0.8
- suppressing help output for unknown args now
Release v0.0.7
Plugin.parse_argsnow returns any unparsed arguments that were found- the
args_to_objectsmethod now raises an Exception by default when unknown arguments are encountered for a plugin (can be controlled with theallow_unknown_argsparameter)
Release v0.0.6
- when enforcing uniqueness it is now checked whether the class names differ before raising an exception.
Release v0.0.5
- added
OutputProducerandInputConsumermixins that can be use for checking the compatibility between pipeline components using thecheck_compatibilityfunction.
Release v0.0.4
- added support for
dynamicmode which only requires listing the superclass of a plugin and the module in which to look for these plugins (slower, but more convenient)
Release v0.0.3
- added
generate_entry_pointshelper method to easily generate theentry_pointssection for plugins, rather than manually maintaining it - added
generate_helpandgenerate_plugin_usagemethods for generating documentation for plugins
Release v0.0.2
- removed old, logging-related code from Plugin class
- added
args_to_objectsto quickly instantiate plugins from parsed arguments - added example to README.md and example library (https://github.com/waikato-datamining/seppl-example)