Releases: mesolitica/malaya
Releases · mesolitica/malaya
Version 4.7.1
- Added T5 Tatabahasa, https://malaya.readthedocs.io/en/latest/load-tatabahasa.html
- Added 5MB T5 for True Case, https://malaya.readthedocs.io/en/latest/load-tatabahasa.html
- Added 5MB T5 for Segmentation, https://malaya.readthedocs.io/en/latest/load-segmentation.html
- Added FastFormer BASE and TINY for Emotion Analysis, https://malaya.readthedocs.io/en/latest/load-emotion.html
- Added FastFormer BASE and TINY for Relevancy Analysis, https://malaya.readthedocs.io/en/latest/load-relevancy.html, can infer up to 2048 tokens.
- Added FastFormer BASE and TINY for Sentiment Analysis, https://malaya.readthedocs.io/en/latest/load-sentiment.html
- Added FastFormer BASE and TINY for Subjectivity Analysis, https://malaya.readthedocs.io/en/latest/load-subjectivity.html
- Added FastFormer BASE and TINY for Toxicity Analysis, https://malaya.readthedocs.io/en/latest/load-toxic.html
- Added FastFormer BASE and TINY for Entity Tagging, https://malaya.readthedocs.io/en/latest/load-entities.html
- Added Pretrained FastFormer, https://github.com/huseinzol05/malaya/tree/master/pretrained-model/fastformer
Version 4.7
- Added NeuSpell Spelling Correction using T5-Bahasa, https://malaya.readthedocs.io/en/latest/load-spell-correction.html#List-available-Transformer-models
- Added JamSpell Spelling Correction interface, https://malaya.readthedocs.io/en/latest/load-spell-correction.html#Load-JamSpell-speller
- Added LibreOffice pEJAm Spelling Correction interface, https://malaya.readthedocs.io/en/latest/load-spell-correction.html#Load-Spylls-speller
- Added T5 models for segmentation, https://malaya.readthedocs.io/en/latest/load-segmentation.html#Load-Transformer-model
- Added T5 models for True Case, https://malaya.readthedocs.io/en/latest/load-true-case.html#List-available-Transformer-model
- Added quantized models for GPT2, https://malaya.readthedocs.io/en/latest/load-prefix-generator.html#Load-GPT2
Version 4.6.1
- Added NeuSpell based using T5-Bahasa, https://malaya.readthedocs.io/en/latest/load-spell-correction.html#List-available-Transformer-models
- Added T5 models for segmentation, https://malaya.readthedocs.io/en/latest/load-segmentation.html#Load-Transformer-model
Version 4.6
- Improved Abstractive Summarization dataset and module, https://malaya.readthedocs.io/en/latest/load-abstractive.html
- Improved Paraphrase dataset and module, https://malaya.readthedocs.io/en/latest/load-abstractive.html
- Improved Knowledge Graph triplet dataset and module, https://malaya.readthedocs.io/en/latest/load-knowledge-graph-triplet.html
- added T5 for Knowledge Graph triplet, now able to predict for news, https://malaya.readthedocs.io/en/latest/load-knowledge-graph-triplet.html
- Remove all t2t models, and replaced with T5-BASE, T5-SMALL and T5-TINY.
- Now able to parallelise T5 models while maintaining model definition from Tensorflow-Mesh.
Version 4.5
- Added Coreference Resolution module, https://malaya.readthedocs.io/en/latest/load-coreference-resolution.html
- Improved dependency parsing module, https://malaya.readthedocs.io/en/latest/load-dependency.html
Version 4.4
- Supported XLA for malaya models, https://malaya.readthedocs.io/en/latest/devices.html
- Supported precision modes, can choose to run FP16, FP32 or FP64, https://malaya.readthedocs.io/en/latest/precision-mode.html
- Improved GPU interface, https://malaya.readthedocs.io/en/latest/gpu-environment.html
- Added Knowledge Graph Triplet transformer models, https://malaya.readthedocs.io/en/latest/load-knowledge-graph-triplet.html
- Added Knowledge Graph parser from Dependency Parsing models, https://malaya.readthedocs.io/en/latest/load-knowledge-graph-from-dependency.html
Version 4.3
- Deep stemmer now support Tensorflow 2.X
- Added distilled transformer for Abstractive Summarization, https://malaya.readthedocs.io/en/latest/load-abstractive.html#List-available-Transformer-models
- Added Similarity module documentation.
- Added KeyPhrase similarity Transformer model, https://malaya.readthedocs.io/en/latest/load-keyphrase-similarity.html
- Added QA SQUAD style Transformer model, https://malaya.readthedocs.io/en/latest/load-keyphrase-similarity.html
- Update WordVector interface, https://malaya.readthedocs.io/en/latest/load-wordvector.html#
Version 4.2.1
- Support Tensorflow 2.0! Deep stemmer model not able to use TF 2.0.
Version 4.2
- Added OntoNotes5 Entity recognition, https://malaya.readthedocs.io/en/latest/load-entities.html#Load-Transformer-Ontonotes-5-model
- Added BigBird Translation, able to infer up to 1024 words, https://malaya.readthedocs.io/en/latest/load-long-text-translation.html
- Added BigBird + Pegasus Abstractive Summarization, able to infer up to 2048 words, https://malaya.readthedocs.io/en/latest/long-text-abstractive-summarization.html
- T5 function merged with
transformer
function. - Removed Bert-Tensorflow and ALBert-Tensorflow dependencies, preparing for TF2.
- Removed contrib layers dependencies, preparing for TF2.
Version 4.1
- Released Kesalahan Tatabahasa module, https://malaya.readthedocs.io/en/latest/load-tatabahasa.html
- Standardized methods for seq2seq model,
greedy_decoder
for greedy decoder.beam_decoder
for beam decoder.nucleus_decoder
for nucleus decoder.