Skip to content

v0.2.0

Compare
Choose a tag to compare
@matteo-grella matteo-grella released this 30 Dec 23:08
· 1196 commits to main since this release

Notable changes:

  • 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.