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
Added support for BART model (tested on Natural Language Inference task);
Added BART API to perform Zero-Shot Text Classification;
Significant reduction of boilerplate code through the unification of nn.Model and nn.Processor interfaces:
there is now a single nn.Model interface that can be reified to become a neural processor. See nn.Reify();
there was no compelling reason to have a Forward method in the nn.Model interface so it has been removed, gracefully increasing flexibility in the implementation of a model.