"docs/vscode:/vscode.git/clone" did not exist on "9d73b922692776d1cf268b8c95fd90c68e561add"
  1. 04 Aug, 2021 4 commits
  2. 03 Aug, 2021 3 commits
  3. 02 Aug, 2021 3 commits
  4. 01 Aug, 2021 1 commit
  5. 30 Jul, 2021 6 commits
  6. 29 Jul, 2021 3 commits
  7. 28 Jul, 2021 12 commits
  8. 27 Jul, 2021 3 commits
  9. 26 Jul, 2021 5 commits
    • Sylvain Gugger's avatar
      Fix push_to_hub for TPUs (#12895) · ba15fe79
      Sylvain Gugger authored
      ba15fe79
    • Sylvain Gugger's avatar
      b3f95dce
    • Sylvain Gugger's avatar
      Update doc · a492aec8
      Sylvain Gugger authored
      a492aec8
    • Nicolas Patry's avatar
      Better heuristic for token-classification pipeline. (#12611) · a3bd7637
      Nicolas Patry authored
      * Better heuristic for token-classification pipeline.
      
      Relooking at the problem makes thing actually much simpler,
      when we look at ids from a tokenizer, we have no way in **general**
      to recover if some substring is part of a word or not.
      
      However, within the pipeline, with offsets we still have access to the
      original string, so we can simply look if previous character (if it
      exists) of a token, is actually a space. This will obviously be wrong
      for tokenizers that contain spaces within tokens, tokenizers where
      offsets include spaces too (Don't think there are a lot).
      
      This heuristic hopefully is fully bc and still can handle non-word based
      tokenizers.
      
      * Updating test with real values.
      
      * We still need the older "correct" heuristic to prevent fusing
      punctuation.
      
      * Adding a real warning when important.
      a3bd7637
    • Matt's avatar
      Add TF multiple choice example (#12865) · 569f61a7
      Matt authored
      * Add new multiple-choice example, remove old one
      569f61a7