spaGO v0.2.0 Release Notes

Release Date: 2020-12-31 // about 3 years ago
  • ➕ Added

    • 👌 Support for BART model (tested on Natural Language Inference task).
    • BART API to perform Zero-Shot Text Classification.

    🔄 Changed

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