1. 21 Oct, 2020 20 commits
  2. 20 Oct, 2020 14 commits
  3. 19 Oct, 2020 6 commits
    • Patrick von Platen's avatar
      [EncoderDecoder] Fix Typo (#7915) · c912ba5f
      Patrick von Platen authored
      * fix encoder decoder models
      
      * add .gitignore
      c912ba5f
    • Bram Vanroy's avatar
      Raise error when using AMP on non-CUDA device (#7869) · 55bcd0cb
      Bram Vanroy authored
      * Raise error when using AMP on non-CUDA device
      
      * make style
      
      * make style
      55bcd0cb
    • Patrick von Platen's avatar
      fix t5 training docstring (#7911) · e3d2bee8
      Patrick von Platen authored
      e3d2bee8
    • Ayub Subhaniya's avatar
      `decoder_config` used before intialisation (#7903) · df1ddced
      Ayub Subhaniya authored
      Seeing error when sending `decoder_config` as a parameter while initializing a encoder-decoder model from pretrained. 
      fixed "UnboundLocalError: local variable 'decoder_config' referenced before assignment"
      df1ddced
    • Quentin Lhoest's avatar
      Allow Custom Dataset in RAG Retriever (#7763) · 033f29c6
      Quentin Lhoest authored
      * add CustomHFIndex
      
      * typo in config
      
      * update tests
      
      * add custom dataset example
      
      * clean script
      
      * update test data
      
      * minor in test
      
      * docs
      
      * docs
      
      * style
      
      * fix imports
      
      * allow to pass the indexed dataset directly
      
      * update tests
      
      * use multiset DPR
      
      * address thom and patrick's comments
      
      * style
      
      * update dpr tokenizer
      
      * add output_dir flag in use_own_knowledge_dataset.py
      
      * allow custom datasets in examples/rag/finetune.py
      
      * add test for custom dataset in distributed rag retriever
      033f29c6
    • Julien Rossi's avatar
      Trainer with Iterable Dataset (#7858) · a09fe140
      Julien Rossi authored
      * fix 5990
      
      * accomodate iterable dataset without predefined length
      * set it as 1 use case: provide max_steps, and NO num_epochs
      * Is a merge of master and PR 5995
      
      * fix trainer test under TF
      
      * fix only for torch
      * TF trainer untouched
      * trainer tests are skipped when no torch
      
      * address comments
      
      * fix quality checks
      
      * remove torch.dataset from test_trainer
      
      * unnecessary inheritance
      * RegressionDataset implements all needed methods __len__ and __getitem__
      
      * fix quality checks
      
      * restore RegressionDataset
      
      * was wrongly under is_torch_available()
      a09fe140