1. 28 Nov, 2021 1 commit
  2. 26 Nov, 2021 4 commits
  3. 25 Nov, 2021 2 commits
  4. 24 Nov, 2021 3 commits
  5. 23 Nov, 2021 1 commit
  6. 22 Nov, 2021 6 commits
  7. 21 Nov, 2021 2 commits
  8. 19 Nov, 2021 5 commits
  9. 18 Nov, 2021 7 commits
    • Patrick von Platen's avatar
      [Speech Recognition] More examples · efea0f86
      Patrick von Platen authored
      Add more XLS-R training runs to the official examples
      efea0f86
    • Stas Bekman's avatar
      [Bert, et al] fix early device assignment (#14447) · 72a6bf33
      Stas Bekman authored
      * fix early device assignment
      
      * more models
      72a6bf33
    • Sylvain Gugger's avatar
    • NielsRogge's avatar
      Add ImageGPT (#14240) · da36c557
      NielsRogge authored
      * First draft
      
      * More improvements
      
      * Improve conversion script
      
      * Fix init weights for layer norm
      
      * Fix correct model for conversion script
      
      * Don't tie input and output embeddings
      
      * Add print statements for debugging
      
      * Add print statements for debugging
      
      * Fix vocab size of model
      
      * Improve documentation, remove fast tokenizer
      
      * Add ImageGPTForImageClassification, improve docs
      
      * Fix docs issue
      
      * Set verbosity level back to info
      
      * Improve tests
      
      * Fix tests and add figure
      
      * Delete tokenizer file
      
      * Remove ImageGPTTokenizer from init files
      
      * Remove ImageGPTLayer from init files
      
      * Remove ImageGPT tokenizer from docs
      
      * First draft of ImageGPTFeatureExtractor
      
      * Fix typo
      
      * Fix bug
      
      * More improvements
      
      * Apply suggestions from code review, add tests for feature extractor
      
      * Fix layernorm
      
      * Update save_pretrained method
      
      * Fix issue
      
      * Make all tests of ImageGPTFeatureExtractor pass
      
      * Update code examples
      
      * Rename model inputs to pixel_values
      
      * Improve code examples
      
      * Update init_weights to post_init
      
      * Fix post_init
      da36c557
    • Sylvain Gugger's avatar
      Add a post init method to all models (#14431) · d83b0e0c
      Sylvain Gugger authored
      * Add a post init method to all models
      
      * Fix tests
      
      * Fix last tests
      
      * Fix templates
      
      * Add comment
      
      * Forgot to save
      d83b0e0c
    • NielsRogge's avatar
      Fix code example (#14441) · 08816de1
      NielsRogge authored
      08816de1
    • William Held's avatar
      Recover Deleted XNLI Instructions (#14437) · 01f8e639
      William Held authored
      01f8e639
  10. 17 Nov, 2021 6 commits
  11. 16 Nov, 2021 3 commits
    • Sylvain Gugger's avatar
      Debug doc (#14424) · b567510c
      Sylvain Gugger authored
      * Create branch for tests
      
      * Pin first upgrade
      
      * Really pin
      
      * Polish fix
      b567510c
    • Lysandre's avatar
      Docs for v4.12.4 · 888fb211
      Lysandre authored
      888fb211
    • Valentin's avatar
      Avoid looping when data exhausted (#14413) · a33168aa
      Valentin authored
      * stop training when a finite IterableDataset is exhausted
      
      when using an iterable dataset num_epochs is set to
      sys.maxsize to make sure all data is consumed
      likewise we want to set max_steps high enough
      but still stop when all data is consumed
      
      (cherry picked from commit 6f0e1d6363153da9051e93acffe1cbab3a3f3b12)
      
      * fix typo flase -> false
      
      * add test for stopping training on exhausted finite iterable dataset
      
      * remove redundant gradient_accumulation_steps
      
      * run make style
      
      reformat training_args docstring
      a33168aa