pyreal
pyreal copied to clipboard
Add support for Realapp objects taking different algorithm transformers per explanation type
Realapp objects should support taking different algorithm transformers by explanation type - after all, this was the original purpose of having algorithm transformers.
Some things we need to think about:
- Users need to somehow specify the order that transformers should be run; so they can't simply pass in additional transformers
- User may want to remove some transformers for a specific explanation type
- We need to store each set of transformer for future use
The easiest way to meet these requirements may just be to have users pass the full transformer list whenever they want something different.