Models
Argflow provides a number of wrappers for different models. At this point
we provide support for all Keras
models as well as for Bayesian classifier models, typically
implemented through scikit-learn
.
This is planned to be extended to conform to all ONNX
(Open Neural Network Exchange) models,
the option to implement adapters for all types of models is provided.
Abstract Class
To create a model adapter and ensure compatibility with the rest of Argflow, it is sufficient to provide an implementation of the following abstract class:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
Keras Adapter
We require adapters for compatibility with the explanation extraction functionality of Argflow, as well as for successful usage of the Argflow Hub API.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Bayesian Classifier Model Adapter Requirements
For creating usable adapters for bayesian classifiers, the user would need to provide to following functionality.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|