"examples/pytorch/test_pytorch_examples.py" did not exist on "4a320f6c9a00fbbeca4aff0abc0acfefc94bcd6a"
  1. 30 Oct, 2023 5 commits
  2. 29 Oct, 2023 1 commit
  3. 27 Oct, 2023 11 commits
  4. 26 Oct, 2023 13 commits
  5. 25 Oct, 2023 8 commits
  6. 24 Oct, 2023 2 commits
    • Tom Aarsen's avatar
      Fix RoPE config validation for FalconConfig + various config typos (#26929) · 6cbc1369
      Tom Aarsen authored
      * Resolve incorrect ValueError in RoPE config for Falcon
      
      * Add broken codeblock tag in Falcon Config
      
      * Fix typo: an float -> a float
      
      * Implement copy functionality for Fuyu and Persimmon
      
      for RoPE scaling validation
      
      * Make style
      6cbc1369
    • JB (Don)'s avatar
      Add a default decoder_attention_mask for EncoderDecoderModel during training (#26752) · a0fd3448
      JB (Don) authored
      * Add a default decoder_attention_mask for EncoderDecoderModel during training
      
      Since we are already creating the default decoder_input_ids from the labels, we should also
      create a default decoder_attention_mask to go with it.
      
      * Fix test constant that relied on manual_seed()
      
      The test was changed to use a decoder_attention_mask that ignores padding instead (which is
      the default one created by BERT when attention_mask is None).
      
      * Create the decoder_attention_mask using decoder_input_ids instead of labels
      
      * Fix formatting in test
      a0fd3448