- 18 Jan, 2023 1 commit
-
-
Matt authored
-
- 17 Jan, 2023 1 commit
-
-
Matt authored
* Add num_workers for prepare_tf_dataset * Bugfix in the default collator and change default tensor type * Remove the "num_workers" arg and move it to a new PR
-
- 16 Jan, 2023 11 commits
-
-
Alara Dirik authored
* Adds Mask2Former to transformers Co-authored-by:
Shivalika Singh <shivalikasingh95@gmail.com> Co-authored-by:
Shivalika Singh <73357305+shivalikasingh95@users.noreply.github.com> Co-authored-by:
NielsRogge <48327001+NielsRogge@users.noreply.github.com> Co-authored-by:
Sylvain Gugger <35901082+sgugger@users.noreply.github.com>
-
NielsRogge authored
* Fix training * Add test * Fix failing tests Co-authored-by:
Niels Rogge <nielsrogge@Nielss-MacBook-Pro.local>
-
Yih-Dar authored
Update TFTapasEmbeddings Co-authored-by:
ydshieh <ydshieh@users.noreply.github.com>
-
Clémentine Fourrier authored
* Added clefourrier as ref point for graph models in bug reports * Update PULL_REQUEST_TEMPLATE.md
-
Yih-Dar authored
fix Co-authored-by:
ydshieh <ydshieh@users.noreply.github.com>
-
Susnato Dhar authored
Co-authored-by: susnato <susnato@tensorflow123456@gmail.com>
-
Nicolas Patry authored
* Fixing #20783 * Update src/transformers/pipelines/base.py * Fixing some tests. * Fixup. * Remove ffmpeg dep + a bit more relaxed for bigbird QA precision. * Better dataset. * Prevent failing on TF. * Better condition. We can't use `can_use_iterator` since we cannot use it directly.
-
Silver authored
Add `min_new_tokens` argument in generate() (implementation based on `MinNewTokensLengthLogitsProcessor`) (#21044) add a new parameter min_new_tokens for generate()
-
guillaume-be authored
- Remove duplicate encoder_attention_mask default value assignment
-
NielsRogge authored
Fix docstring Co-authored-by:
Niels Rogge <nielsrogge@Nielss-MacBook-Pro.local>
-
NielsRogge authored
* First draft * More improvements * Add convnext backbone * Add conversion script * Add more improvements * Comment out to_dict * Add to_dict method * Add default config * Fix config * Fix backbone * Fix backbone some more * Add docs, auto mapping, tests * Fix some tests * Fix more tests * Fix more tests * Add conversion script * Improve conversion script * Add support for getting reshaped undownsampled hidden states * Fix forward pass * Add print statements * Comment out set_shift_and_window_size * More improvements * Correct downsampling layers conversion * Fix style * First draft * Fix conversion script * Remove config attribute * Fix more tests * Update READMEs * Update ConvNextBackbone * Fix ConvNext tests * Align ConvNext with Swin * Remove files * Fix index * Improve docs * Add output_attentions to model forward * Add backbone mixin, improve tests * More improvements * Update init_weights * Fix interpolation of logits * Add UperNetImageProcessor * Improve image processor * Fix image processor * Remove print statements * Remove script * Update import * Add image processor tests * Remove print statements * Fix test * Add integration test * Add convnext integration test * Update docstring * Fix README * Simplify config * Apply suggestions * Improve docs * Rename class * Fix test_initialization * Fix import * Address review * Fix confg * Convert all checkpoints * Fix default backbone * Usage same processor as segformer * Apply suggestions * Fix init_weights, update conversion scripts * Improve config * Use Auto API instead of creating a new image processor * Fix docs * Add doctests * Remove ResNetConfig dependency * Add always_partition argument * Fix rebaseé * Improve docs * Convert checkpoints Co-authored-by:
Niels Rogge <nielsrogge@Nielss-MacBook-Pro.local> Co-authored-by:
Niels Rogge <nielsrogge@Nielss-MBP.localdomain>
-
- 15 Jan, 2023 2 commits
-
-
TK Buristrakul authored
Fixed typo
-
Yusuke Oda authored
Suppress deprecation warning
-
- 14 Jan, 2023 3 commits
-
-
Arthur authored
* Remove random output * remove values * fix copy statements
-
Sylvain Gugger authored
* Rework automatic code samples in docstrings * ImageProcessor->AutoImageProcessor * Add models to fix copies * Last typos * A couple more models * Fix copies
-
Shogo Hida authored
* Add community to toctree Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> * Copy English content Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> * Add some translations Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> * Add some translations Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> * Add some translations Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> * Fix position of community Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> * Fix translation Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> * Add translation Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> * Add translation Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> * Add translation Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> * Add translation Signed-off-by:
Shogo Hida <shogo.hida@gmail.com> Signed-off-by:
Shogo Hida <shogo.hida@gmail.com>
-
- 13 Jan, 2023 3 commits
-
-
Steven Liu authored
* first draft of new task summary * make style * review * apply feedback * apply feedbacks * final touches
-
Arthur authored
* typo * change name in `__repr__` * fix my mistake
-
Yih-Dar authored
fix torchscript tests for AltCLIP Co-authored-by:
ydshieh <ydshieh@users.noreply.github.com>
-
- 12 Jan, 2023 5 commits
-
-
Yih-Dar authored
* Fix for Past CI * make style * clean up * unindent 2 blocks Co-authored-by:
ydshieh <ydshieh@users.noreply.github.com>
-
Stas Bekman authored
* [bnb optim] fixing test * force 1 gpu * fix * fix * fix * finalize * improve commentary * fix * cleanup * more fixes
-
Yih-Dar authored
* Remove gradient_checkpointing from MarkupLMConfig * Remove predict_special_tokens from OpenAIGPTConfig * Remove enable_cls from RoCBertConfig * Remove batch_size from TrajectoryTransformerConfig * Remove searcher_seq_len from RealmConfig * Remove feat_quantizer_dropout from WavLMConfig * Remove position_biased_input from SEWDConfig * Remove max_source_positions from Speech2Text2Config Co-authored-by:
ydshieh <ydshieh@users.noreply.github.com>
-
Susnato Dhar authored
Fixed issue #21039 and added test for low_cpu_mem_usage
-
Wang, Yi authored
* Optimize inference only mode memory if ipex is used Signed-off-by:
Wang, Yi A <yi.a.wang@intel.com> * fix code style Signed-off-by:
Wang, Yi A <yi.a.wang@intel.com> Signed-off-by:
Wang, Yi A <yi.a.wang@intel.com>
-
- 11 Jan, 2023 2 commits
-
-
zzz authored
fix typo Signed-off-by:
xiaoyang zhu <zhuxiaoyang1996@gmail.com> Signed-off-by:
xiaoyang zhu <zhuxiaoyang1996@gmail.com>
-
Ying Zhang authored
Update doc for CLIPConfig
-
- 10 Jan, 2023 2 commits
-
-
Steven Liu authored
fix header level
-
Bharat Ramanathan authored
* docs: add wandb metrics and model checkpointing to callback docstrings * docs: update reference to wandb documentation * fix: change default of `"WANDB_WATCH"` from ``"gradients"` to ``"false"` * feature: add `on_save` method and update `"WANDB_LOG_MODEL` behaviour * fix: use default wandb run names instead of `output_dir` - removes duplicated run names from wandb workspace - models can be logged with corresponding run names * fix: edit deprecation warning based on review suggestions Co-authored-by:
Sylvain Gugger <35901082+sgugger@users.noreply.github.com> * fix: change indentation of docstrings * fix: change indentation of docstrings and run fixup * fix: empty commit for circleci permissions issue * fix: format deprecation doc strings review suggestion Co-authored-by:
Steven Liu <59462357+stevhliu@users.noreply.github.com> * docs: Highlight WANDB_DISABLED arg in documentaion Co-authored-by:
Steven Liu <59462357+stevhliu@users.noreply.github.com> * fix: run fixup after updating docstrings Co-authored-by:
Bharat Ramanathan <ramanathan.parameshwaran@gohuddl.com> Co-authored-by:
Sylvain Gugger <35901082+sgugger@users.noreply.github.com> Co-authored-by:
Steven Liu <59462357+stevhliu@users.noreply.github.com>
-
- 09 Jan, 2023 2 commits
-
-
KarlFelixJoehnk authored
* [Fix] Make the attention head size in distilbert an object attribute * Fix code style Co-authored-by:
Felix Joehnk <fjoehnk@N73GCH2NDH.corp.proofpoint.com>
-
Arthur authored
* small patches, forgot a line * refactor PT * the actual fix
-
- 08 Jan, 2023 5 commits
-
-
Yih-Dar authored
remove flax file from `documentation_tests.txt` Co-authored-by:
ydshieh <ydshieh@users.noreply.github.com>
-
Sylvain Gugger authored
-
Sylvain Gugger authored
-
Arthur authored
* start cleanup * more updates * more models are affected * more updates * update generation utils * style * revert change that removed reorder cachce * update generation utils * style * style * remove reorder cache
-
SABA UL HAQUE authored
Typo fix: Corrected the word metada --> metadata
-
- 07 Jan, 2023 1 commit
-
-
Kaito Sugimoto authored
-
- 06 Jan, 2023 2 commits
-
-
Bartosz Szmelczynski authored
* fix levit timm conversion file * remove set_defaults
-
Ceyda Cinarel authored
-