1. 16 Mar, 2021 2 commits
  2. 15 Mar, 2021 1 commit
  3. 08 Mar, 2021 1 commit
  4. 27 Feb, 2021 1 commit
  5. 19 Feb, 2021 1 commit
  6. 05 Feb, 2021 1 commit
  7. 28 Jan, 2021 1 commit
  8. 27 Jan, 2021 1 commit
  9. 26 Jan, 2021 1 commit
  10. 25 Jan, 2021 1 commit
  11. 14 Jan, 2021 1 commit
    • Sylvain Gugger's avatar
      Switch metrics in run_ner to datasets (#9567) · 46ed56cf
      Sylvain Gugger authored
      * Switch metrics in run_ner to datasets
      
      * Add flag to return all metrics
      
      * Upstream (and rename) sortish_sampler
      
      * Revert "Upstream (and rename) sortish_sampler"
      
      This reverts commit e07d0dcf650c2bae36da011dd76c77a8bb4feb0d.
      46ed56cf
  12. 06 Jan, 2021 1 commit
  13. 22 Dec, 2020 1 commit
  14. 18 Dec, 2020 1 commit
  15. 11 Dec, 2020 1 commit
  16. 07 Dec, 2020 1 commit
  17. 30 Nov, 2020 1 commit
  18. 19 Nov, 2020 1 commit
  19. 17 Nov, 2020 2 commits
  20. 12 Nov, 2020 1 commit
  21. 11 Nov, 2020 1 commit
  22. 10 Nov, 2020 1 commit
  23. 09 Nov, 2020 3 commits
  24. 05 Nov, 2020 1 commit
    • Bobby Donchev's avatar
      change TokenClassificationTask class methods to static methods (#7902) · 52f44dd6
      Bobby Donchev authored
      
      
      * change TokenClassificationTask class methods to static methods
      
      Since we do not require self in the class methods of TokenClassificationTask we should probably switch to static methods. Also, since the class TokenClassificationTask does not contain a constructor it is currently unusable as is. By switching to static methods this fixes the issue of having to document the intent of the broken class.
      
      Also, since the get_labels and read_examples_from_file methods are ought to be implemented. Static method definitions are unchanged even after inheritance, which means that it can be overridden, similar to other class methods.
      
      * Trigger Build
      Co-authored-by: default avatarLysandre <lysandre.debut@reseau.eseo.fr>
      52f44dd6
  25. 28 Oct, 2020 1 commit
  26. 18 Sep, 2020 1 commit
  27. 27 Aug, 2020 1 commit
  28. 26 Aug, 2020 1 commit
  29. 24 Aug, 2020 2 commits
  30. 17 Aug, 2020 1 commit
  31. 13 Aug, 2020 1 commit
  32. 11 Aug, 2020 1 commit
  33. 09 Aug, 2020 1 commit
  34. 07 Aug, 2020 1 commit
  35. 29 Jul, 2020 1 commit
    • Julien Plu's avatar
      Rework TF trainer (#6038) · 54f9fbef
      Julien Plu authored
      * Fully rework training/prediction loops
      
      * fix method name
      
      * Fix variable name
      
      * Fix property name
      
      * Fix scope
      
      * Fix method name
      
      * Fix tuple index
      
      * Fix tuple index
      
      * Fix indentation
      
      * Fix variable name
      
      * fix eval before log
      
      * Add drop remainder for test dataset
      
      * Fix step number + fix logging datetime
      
      * fix eval loss value
      
      * use global step instead of step + fix logging at step 0
      
      * Fix logging datetime
      
      * Fix global_step usage
      
      * Fix breaking loop + logging datetime
      
      * Fix step in prediction loop
      
      * Fix step breaking
      
      * Fix train/test loops
      
      * Force TF at least 2.2 for the trainer
      
      * Use assert_cardinality to facilitate the dataset size computation
      
      * Log steps per epoch
      
      * Make tfds compliant with TPU
      
      * Make tfds compliant with TPU
      
      * Use TF dataset enumerate instead of the Python one
      
      * revert previous commit
      
      * Fix data_dir
      
      * Apply style
      
      * rebase on master
      
      * Address Sylvain's comments
      
      * Address Sylvain's and Lysandre comments
      
      * Trigger CI
      
      * Remove unused import
      54f9fbef