1. 23 Jan, 2020 23 commits
  2. 22 Jan, 2020 1 commit
  3. 21 Jan, 2020 10 commits
  4. 20 Jan, 2020 4 commits
  5. 17 Jan, 2020 2 commits
    • Brendan Roof's avatar
      Add lower bound to tqdm for tqdm.auto · 23c6998b
      Brendan Roof authored
      - It appears that `tqdm` only introduced `tqdm.auto` in 4.27.
      - See https://github.com/tqdm/tqdm/releases/tag/v4.27.0.
      - Without the lower bound I received the following stack trace in an environment where I already had tqdm installed:
      ```
        File "/home/brendanr/anaconda3/envs/allennlp/lib/python3.6/site-packages/transformers/__init__.py", line 20, in <module>
          from .file_utils import (TRANSFORMERS_CACHE, PYTORCH_TRANSFORMERS_CACHE, PYTORCH_PRETRAINED_BERT_CACHE,
        File "/home/brendanr/anaconda3/envs/allennlp/lib/python3.6/site-packages/transformers/file_utils.py", line 24, in <module>
          from tqdm.auto import tqdm
      ModuleNotFoundError: No module named 'tqdm.auto'
      ```
      23c6998b
    • Mark Neumann's avatar
      Fix BasicTokenizer to respect `never_split` parameters (#2557) · 65a89a89
      Mark Neumann authored
      * add failing test
      
      * fix call to _run_split_on_punc
      
      * format with black
      65a89a89