Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

v0.4.1

Compare
Choose a tag to compare
@cgraywang cgraywang released this 24 Oct 17:35
· 586 commits to master since this release
2111204

Highlights

Models

  • Language Model
  • Document Classification
    • The Classification Model as introduced by Joulin, Armand, et al. “Bag of tricks for efficient text classification” achieved validation accuracy validation accuracy 98 on Yelp review dataset (#258 #297)
  • Question Answering
    • The QANet as introduced by Jozefowicz, Rafal, et al. “
      QANet: Combining Local Convolution with Global Self-Attention for Reading Comprehension”. ICLR 2018
      achieved F1 score 79.5 on SQuAD 1.1 dataset (#339) (coming soon to master branch)

New Tutorials

  • Machine Translation
    • The Google NMT as introduced by Wu, Yonghui, et al. “Google's neural machine translation system:
      Bridging the gap between human and machine translation”. arXiv preprint arXiv:1609.08144 (2016)
      is introduced as part of the gluonnlp tutorial (#261)
    • The Transformer based Machine Translation by Vaswani, Ashish, et al. “Attention is all you need.” Advances in Neural Information Processing Systems. 2017 is introduced as part of the gluonnlp tutorial (#279)
  • Sentence Embedding

New Datasets

API updates

  • Added dataloader that allows multi-shard sampling (#237 #280 #285)
  • Simplified DataStream, added DatasetStream, refactored and extended PrefetchingStream (#235)
  • Unified BPTT batchify for dataset and stream (#246)
  • Added symbolic beam search (#233)
  • Added SequenceSampler (#272)
  • Refactored Transform APIs (#282)
  • Reorganized index of the repo and model zoo page (#357)

Fixes & Small Changes

  • Fixed module name in batchify.py example (#239)
  • Improved imports structure (#248)
  • Added test for nmt scripts (#234)
  • Speeded up batchify.Pad (#249)
  • Fixed LanguageModelDataset.bptt_batchify (#243)
  • Fixed weight drop and add tests (#268)
  • Fixed relative links that pypi doesn't handle (#293)
  • Updated notebook build logic (#309)
  • Added community link (#313)
  • Enabled run tests in parallel (#317)
  • Enabled word embedding scripts tests (#321)

See all commits