You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current implementation of transformers in transformers.py shows the technical debt of the history of the search for the best architecture. This should be refactored, as:
Put the value making code within a ValueMaker.
Re-use the parent's Transformer.__call__ function as much as possible.
Make parameter names prefixed by the transformer name (e.g., split_separator), to allow composition.
Current implementation of transformers in
transformers.pyshows the technical debt of the history of the search for the best architecture. This should be refactored, as:Transformer.__call__function as much as possible.split_separator), to allow composition.