Skip to content

Releases: dmmiller612/bert-extractive-summarizer

bug fix release

10 Oct 20:37
Compare
Choose a tag to compare

Bug fixes.

GPU Support

14 Apr 00:51
f63ceea
Compare
Choose a tag to compare

Bert Extractive Summarizer now offers GPU support, if CUDA is available.

Custom Model Fix

19 Nov 00:09
2bba997
Compare
Choose a tag to compare

This release addresses the issue with custom BERT models. Thanks to @hdatteln for addressing the pull request.

Bug Fixes

25 Oct 02:31
Compare
Choose a tag to compare
  • Fixed issue: #17, which was disallowing custom models.
  • Fixed issue with random state and summarizations
  • allowed option for passing in different languages.

New Extractive Text Summarization Service

29 Sep 17:41
Compare
Choose a tag to compare

What's New?

In this release, a new simple flask service is added to perform ad-hoc summarizations. This can be easily ran through docker using the provided makefile (or docker commands). Instructions are provided in the README.

On top of the service, the newest transformers library is also used now (instead of pytorch_transformers).

Updates to the new Transformers library and more

28 Sep 16:57
Compare
Choose a tag to compare

The main update for this release is the library moved to HuggingFace's transformers' library. Some changes do break backwards compatibility, but should be minor. A list of the full changes are below.

  • Migrated to the new Transformers library
  • Added xlnet, distilbert-base-uncased, and xlm networks
  • vector_size is no longer required for the Bert Parent.
  • Deprecated the SingleModel class in favor of Summarizer