Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
fbc715a
[FA2] Bart-like models
patrickvonplaten Oct 10, 2023
ce43f2a
make tests work
patrickvonplaten Oct 10, 2023
2b79352
Apply suggestions from code review
patrickvonplaten Oct 10, 2023
a70f9cf
Apply suggestions from code review
patrickvonplaten Oct 10, 2023
be48a5c
improve
patrickvonplaten Oct 10, 2023
22b3e2e
Merge branch 'add_fa2_bart' of https://github.com/huggingface/transfo…
patrickvonplaten Oct 10, 2023
8e344ee
Update examples/research_projects/jax-projects/big_bird/bigbird_flax.py
patrickvonplaten Oct 10, 2023
8e35ac9
improve further
patrickvonplaten Oct 10, 2023
7c66a63
Merge branch 'add_fa2_bart' of https://github.com/huggingface/transfo…
patrickvonplaten Oct 10, 2023
a070445
fix bart
patrickvonplaten Oct 10, 2023
341b7c9
add FA to whisper
patrickvonplaten Oct 10, 2023
cdf2190
make fix copies whisper
patrickvonplaten Oct 10, 2023
ddad165
correct more
patrickvonplaten Oct 10, 2023
045f183
more
patrickvonplaten Oct 10, 2023
5a82297
improve bart
patrickvonplaten Oct 10, 2023
3126d2f
merge conflicts
patrickvonplaten Oct 11, 2023
b86528d
Merge branch 'main' of https://github.com/huggingface/transformers in…
patrickvonplaten Oct 24, 2023
39f820d
improve flash attention
patrickvonplaten Oct 24, 2023
c4517f3
fix more
patrickvonplaten Oct 24, 2023
f195c15
fix attn mask bug
patrickvonplaten Oct 24, 2023
c4488b9
Fix all
patrickvonplaten Oct 24, 2023
2f99cea
rename to converter
patrickvonplaten Oct 24, 2023
d8ae461
fix whisper
patrickvonplaten Oct 24, 2023
c4fa0c9
Apply suggestions from code review
patrickvonplaten Oct 24, 2023
1ee2b6d
add spec decoding
patrickvonplaten Oct 24, 2023
fd880c9
Merge branch 'add_fa2_bart' of https://github.com/huggingface/transfo…
patrickvonplaten Oct 24, 2023
53f7700
Update src/transformers/models/bart/modeling_bart.py
patrickvonplaten Oct 24, 2023
21a9735
Merge branch 'add_fa2_bart' of https://github.com/huggingface/transfo…
patrickvonplaten Oct 24, 2023
d16fde8
correct more
patrickvonplaten Oct 24, 2023
b6d2b65
Add all
patrickvonplaten Oct 27, 2023
b944f25
get spec dec batch working
patrickvonplaten Oct 27, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/transformers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3077,6 +3077,7 @@
"WHISPER_PRETRAINED_MODEL_ARCHIVE_LIST",
"WhisperForAudioClassification",
"WhisperForConditionalGeneration",
"WhisperForCausalLM"
"WhisperModel",
"WhisperPreTrainedModel",
]
Expand Down Expand Up @@ -6820,6 +6821,7 @@
WHISPER_PRETRAINED_MODEL_ARCHIVE_LIST,
WhisperForAudioClassification,
WhisperForConditionalGeneration,
WhisperForCausalLM,
WhisperModel,
WhisperPreTrainedModel,
)
Expand Down
166 changes: 126 additions & 40 deletions src/transformers/generation/utils.py

Large diffs are not rendered by default.

Loading