"vscode:/vscode.git/clone" did not exist on "64abd3e0aab07180aeabcef2ca80586ab54d64c3"
  1. 09 Sep, 2020 2 commits
    • Stas Bekman's avatar
      [generation] consistently add eos tokens (#6982) · 03e363f9
      Stas Bekman authored
      Currently beam search returns inconsistent outputs - if hypos have different lengths we get eos, if they are the same - we don't.
      
      This PR makes the output consistent.
      
      Also why not also replace:
      
      ```
                  if sent_lengths[i] < max_length:
                      decoded[i, sent_lengths[i]] = eos_token_id
      ```
      with:
      ```
                  decoded[i, sent_lengths[i]] = eos_token_id
      ```
      Shouldn't eos always be there? If the data gets truncated, the caller needs to user a larger `max_length`.
      
      Please correct me if my logic is flawed.
      03e363f9
    • Stas Bekman's avatar
      adding TRANSFORMERS_VERBOSITY env var (#6961) · d0963486
      Stas Bekman authored
      * introduce TRANSFORMERS_VERBOSITY env var + test + test helpers
      
      * cleanup
      
      * remove helper function
      d0963486
  2. 08 Sep, 2020 9 commits
  3. 07 Sep, 2020 18 commits
  4. 06 Sep, 2020 1 commit
  5. 05 Sep, 2020 1 commit
  6. 04 Sep, 2020 8 commits
  7. 03 Sep, 2020 1 commit