- 25 Feb, 2022 4 commits
-
-
Nicolas Patry authored
* Adding the option to return_timestamps on pure CTC ASR models. * Remove `math.prod` which was introduced in Python 3.8 * int are not floats. * Reworking the PR to support "char" vs "word" output. * Fixup! * Update src/transformers/pipelines/automatic_speech_recognition.py Co-authored-by:
Patrick von Platen <patrick.v.platen@gmail.com> * Update src/transformers/pipelines/automatic_speech_recognition.py Co-authored-by:
Patrick von Platen <patrick.v.platen@gmail.com> * Update src/transformers/pipelines/automatic_speech_recognition.py Co-authored-by:
Patrick von Platen <patrick.v.platen@gmail.com> * Update src/transformers/pipelines/automatic_speech_recognition.py Co-authored-by:
Patrick von Platen <patrick.v.platen@gmail.com> * Update src/transformers/pipelines/automatic_speech_recognition.py Co-authored-by:
Patrick von Platen <patrick.v.platen@gmail.com> * Update src/transformers/pipelines/automatic_speech_recognition.py Co-authored-by:
Patrick von Platen <patrick.v.platen@gmail.com> * Update src/transformers/pipelines/automatic_speech_recognition.py Co-authored-by:
Patrick von Platen <patrick.v.platen@gmail.com> * Update src/transformers/pipelines/automatic_speech_recognition.py Co-authored-by:
Patrick von Platen <patrick.v.platen@gmail.com> * Update src/transformers/pipelines/automatic_speech_recognition.py Co-authored-by:
Patrick von Platen <patrick.v.platen@gmail.com> * Quality. Co-authored-by:
Patrick von Platen <patrick.v.platen@gmail.com>
-
Tanay Mehta authored
* Added model specific output classes to poolformer docs * Fixed Segformer typo in Poolformer docs
-
Pavel Belevich authored
-
Sylvain Gugger authored
-
- 24 Feb, 2022 7 commits
-
-
Lysandre Debut authored
-
Patrick von Platen authored
* [TFXLNet] Correct tf xlnet * adapt test comment
-
Patrick von Platen authored
-
Patrick von Platen authored
* remove soundfile old way of loading audio * Adapt slow test
-
Sylvain Gugger authored
* Revert changes in logit size for semantic segmentation models * Address review comments
-
Sylvain Gugger authored
-
Sylvain Gugger authored
* Fix add-new-model-like command when old checkpoint can't be recovered * Style
-
- 23 Feb, 2022 20 commits
-
-
Lysandre Debut authored
* Fix model templates * Update paths
-
Lysandre authored
-
Lysandre authored
-
Eliott C authored
-
Lysandre Debut authored
-
Lysandre Debut authored
-
Lysandre Debut authored
* Per-folder tests reorganization * Review comments Co-authored-by:
sgugger <sylvain.gugger@gmail.com> Co-authored-by:
Stas Bekman <stas@stason.org>
-
Lysandre Debut authored
* Tests fetcher * Review comments Co-authored-by:sgugger <sylvain.gugger@gmail.com> Review comments
-
Lysandre Debut authored
* Per-folder tests reorganization Co-authored-by:
sgugger <sylvain.gugger@gmail.com> Co-authored-by:
Stas Bekman <stas@stason.org>
-
Steven Liu authored
* clean commit of changes to NLP tasks *
馃枍 apply feedback *馃摑 move tf data collator in multiple choice Co-authored-by:Steven <stevhliu@gmail.com>
-
Eliott C authored
-
Eliott C authored
Co-authored-by:Pierric Cistac <Pierrci@users.noreply.github.com>
-
lsb authored
In the code, `do_normalize` defaults to True
-
Julien Chaumond authored
* custom_models: tiny doc addition * mention security feature earlier in the section Co-authored-by:Steven Liu <59462357+stevhliu@users.noreply.github.com>
-
Nicolas Patry authored
* Enabling Beit SegFormer to `image-segmentation`. * Fixing the score. * Fix import ? * Missing in type hint. * Multiple test fixes: - Add `raw_image` support. It should be the default IMHO since in Python world it doesn't make any sense to base64 encode the image (Sorry @mishig, didn't catch that in my review). I really think we should consider breaking BC here. - Add support for Segformer tiny test (needed `SegformerModelTester.get_config` to enable TinyConfig @NielsRogge) - Add the check that `batch_size` works correctly on that pipeline. Uncovered that it doesn't for Detr, which IMO is OK since images after `feature_extractor` don't have the same size. Comment should explain. * Type hint as a string. * Make fixup + update black. * torch+vision protections. * Don't use torchvision, use F.interpolate instead (no new dep). * Last fixes for Segformer. * Update test to reflect new image (which was broken) * Update tests. * Major BC modification: - Removed the string compressed PNG string, that's a job for users `transformers` stays in python land. - Removed the `score` for semantic segmentation. It has hardly a meaning on its own in this context. - Don't include the grayscale with logits for now (which could enable users to get a sense of confidence). Might be done later. - Don't include the surface of the mask (could be used for sorting by users, to filter out small masks). It's already calculable, and it's easier to add later, than to add now and break later if we need. * `make fixup`. * Small changes. * Rebase + doc fixup.
-
Suraj Patil authored
* [ViLT] Fix checkpoint url in config * Apply suggestions from code review Co-authored-by:
NielsRogge <48327001+NielsRogge@users.noreply.github.com> Co-authored-by:
NielsRogge <48327001+NielsRogge@users.noreply.github.com>
-
Suraj Patil authored
-
Nicolas Patry authored
(`hf-internal-testing/tiny-clip` for instance)
-
Suraj Patil authored
-
Nicolas Patry authored
* [Proposal] Adding ZeroShotImageClassificationPipeline - Based on CLIP * WIP, Resurection in progress. * Resurrection... achieved. * Reword handling different `padding_value` for `feature_extractor` and `tokenizer`. * Thanks doc-builder ! * Adding docs + global namespace `ZeroShotImageClassificationPipeline`. * Fixing templates. * Make the test pass and be robust to floating error. * Adressing suraj's comments on docs mostly. * Tf support start. * TF support. * Update src/transformers/pipelines/zero_shot_image_classification.py Co-authored-by:
Suraj Patil <surajp815@gmail.com> Co-authored-by:
Suraj Patil <surajp815@gmail.com>
-
- 22 Feb, 2022 8 commits
-
-
Santiago Castro authored
* Fix `HfArgumentParser` when passing a generator * Add missing import * Always convert `dataclass_types` into a list
-
Julien Chaumond authored
-
Yongrae Jo authored
cna -> can
-
Boumadane Abdelmoumene authored
Co-authored-by:Boumadane Abdelmoumene <moumene.boumadane@gmail.com>
-
Patrick von Platen authored
* [Wav2Vec2 Time Stamps] * Add first version * add word time stamps * Fix * save intermediate space * improve * [Finish CTC Tokenizer] * remove @ * remove @ * push * continue with phonemes * up * finish PR * up * add example * rename * finish * Apply suggestions from code review Co-authored-by:
Sylvain Gugger <35901082+sgugger@users.noreply.github.com> * correct split * finalize Co-authored-by:
Sylvain Gugger <35901082+sgugger@users.noreply.github.com>
-
Funtowicz Morgan authored
* Add GeLU10 (clipped version of GeLU) to transformers to improve quantization performances. * Add unittests. * Import tensorflow after `is_tf_available` check. * Fix tensorflow wrong function `tf.tensor` to `tf.constant` * style. * use `tf.math.max` * Fix tf tests. * style. * style style style style style style * style style style style style style * Address @sgugger comments. * Fix wrong operator for raising ValueError for ClippedGELUActivation.
-
Joao Gante authored
* TF train_step docstring
-
Francesco Saverio Zuppichini authored
-
- 21 Feb, 2022 1 commit
-
-
SaulLu authored
-