Skip to content

Releases: luozhouyang/transformers-keras

Release v0.5.1

23 Nov 02:39
Compare
Choose a tag to compare

Updates:

  • Fixed minor SimCSE modeling bugs
  • Rename layer names in Question Answering models

Release v0.5.0

22 Nov 04:11
Compare
Choose a tag to compare

Updates:

Release v0.4.9

20 Oct 09:18
Compare
Choose a tag to compare

Updates:

  • Rename Examples and Datasets for consistency
  • Rename Callbacks for consistency
  • Refactoring Adapters for better subclassing
  • Add BertAdapterForLangboatMengzi for load pretrained weights from Langboat/Mengzi

Release v0.4.8

12 Oct 06:58
Compare
Choose a tag to compare

Updates:

  • Fixed building dataset from CoNLL files for token classification tasks
  • Rename method _parse_jsonl to _parse_instances_to_examples for dataset builders
  • Fixed minor arguments error

Release v0.4.7

30 Sep 08:02
Compare
Choose a tag to compare

Changes:

  • Fixed confusing warnings in adapters
  • Add BertForMaskedLanguageModel and it's dataset builder MaskedLanguageModelDataset

Release v0.4.6

29 Sep 03:16
Compare
Choose a tag to compare

Changes:

  • Add Distiller for model distillation
  • Add support for difference padding strategies:
    • bucket: group sequence by length, and then padding sequence by max sequence length of the same batch
    • batch: padding sequence by max sequence length of this batch
    • fixed: padding sequence to a fixed max sequence length over all examples

Release 0.4.5

07 Sep 05:06
Compare
Choose a tag to compare

Updates:

  • Simplify dataset builders
  • Add Sentiment Analysis models & dataset builder

Release v0.4.4

19 Aug 07:26
Compare
Choose a tag to compare

Updates:

  • Refactoring datasets for different tasks, add new from_jsonl_files implementations
  • Add metric callbacks for different tasks, including SpearmanForSentenceEmbedding, ExactMatchForQuestionAnswering, F1ForQuestionAnswering,SeqEvalForTokenClassification
  • Fixed some error in datasets

Release v0.4.3

17 Aug 07:06
Compare
Choose a tag to compare

Updates:

  • Remove from_jsonl_files method from dataset builders for simplicity and consistency

Release v0.4.2

16 Aug 03:16
Compare
Choose a tag to compare

Updates:

  • Add dataset builders for question answering tasks
  • Add dataset builders for simcse model
  • Add dataset builders for sequence classification tasks
  • Add dataset builders for token classification tasks