1. 28 Jul, 2020 4 commits
  2. 27 Jul, 2020 4 commits
  3. 24 Jul, 2020 1 commit
  4. 22 Jul, 2020 2 commits
  5. 21 Jul, 2020 4 commits
  6. 20 Jul, 2020 3 commits
  7. 18 Jul, 2020 4 commits
  8. 17 Jul, 2020 1 commit
  9. 16 Jul, 2020 1 commit
  10. 15 Jul, 2020 2 commits
  11. 14 Jul, 2020 1 commit
  12. 10 Jul, 2020 1 commit
  13. 09 Jul, 2020 1 commit
  14. 08 Jul, 2020 1 commit
    • Ji Xin's avatar
      Add DeeBERT (entropy-based early exiting for *BERT) (#5477) · cfbb9829
      Ji Xin authored
      * Add deebert code
      
      * Add readme of deebert
      
      * Add test for deebert
      
      Update test for Deebert
      
      * Update DeeBert (README, class names, function refactoring); remove requirements.txt
      
      * Format update
      
      * Update test
      
      * Update readme and model init methods
      cfbb9829
  15. 07 Jul, 2020 5 commits
  16. 06 Jul, 2020 1 commit
  17. 01 Jul, 2020 3 commits
  18. 30 Jun, 2020 1 commit
    • Hong Xu's avatar
      In the run_ner.py example, give the optional label arg a default value (#5326) · 501040fd
      Hong Xu authored
      Otherwise, if label is not specified, the following error occurs:
      
      	Traceback (most recent call last):
      	  File "run_ner.py", line 303, in <module>
      	    main()
      	  File "run_ner.py", line 101, in main
      	    model_args, data_args, training_args = parser.parse_json_file(json_file=os.path.abspath(sys.argv[1]))
      	  File "/home/user/anaconda3/envs/bert/lib/python3.7/site-packages/transformers/hf_argparser.py", line 159, in parse_json_file
      	    obj = dtype(**inputs)
      	TypeError: __init__() missing 1 required positional argument: 'labels'
      501040fd