Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
18e7172
refactor attention and many other
yonigozlan Oct 13, 2025
a931c26
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Oct 13, 2025
f7536b9
remove return_dict interface
yonigozlan Oct 13, 2025
c016021
improve variable names
yonigozlan Oct 14, 2025
7f21985
use _can_record_outputs and add real support for pixel and queries ma…
yonigozlan Oct 14, 2025
d0494e9
split self attention and cross attention
yonigozlan Oct 14, 2025
2f0752f
nits
yonigozlan Oct 14, 2025
67a007a
standardize mask handling
yonigozlan Oct 16, 2025
eab4e85
update DetrMHAttentionMap
yonigozlan Oct 17, 2025
ac8d387
refactor mlp detr
yonigozlan Oct 17, 2025
b82b172
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Nov 5, 2025
4181e50
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Jan 9, 2026
efb8070
make style
yonigozlan Jan 9, 2026
1fc5fe3
remve outdated tests which used ".bin" checkpoints
yonigozlan Jan 9, 2026
ed595af
Updates modeling_detr to newest standards
yonigozlan Jan 9, 2026
0827d6b
Review + fix detr weight conversion
yonigozlan Jan 10, 2026
9aeded8
replace einsum, reorder
yonigozlan Jan 10, 2026
1d65bd9
refactor rt_detr rt_detr_v2 d_fine to updated library standards
yonigozlan Jan 12, 2026
0d6115c
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Jan 12, 2026
4bc6b5e
fix repo
yonigozlan Jan 12, 2026
e5cf22a
Fix test_reverse_loading_mapping test
yonigozlan Jan 13, 2026
b2419e4
use modular for RT-DETR
yonigozlan Jan 13, 2026
1dddb27
refactor conditional and deformable detr
yonigozlan Jan 14, 2026
534dbd3
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Jan 14, 2026
e11657f
use modular for deformable_detr
yonigozlan Jan 14, 2026
8625827
use modular for conditional_detr
yonigozlan Jan 14, 2026
dd02700
fix repo
yonigozlan Jan 14, 2026
bad9c69
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Jan 14, 2026
6f2b302
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Jan 21, 2026
d2c74bb
refactor DetrMaskHeadSmallConv
yonigozlan Jan 21, 2026
57a318d
fix modular
yonigozlan Jan 21, 2026
d7892e9
Temporarily remove outdated copied from
yonigozlan Jan 21, 2026
0e8d262
fix consistency
yonigozlan Jan 21, 2026
63dc531
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Jan 21, 2026
65d9d1b
Improve DetrMHAttentionMap
yonigozlan Jan 21, 2026
ca317d1
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Jan 21, 2026
3ce2110
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Jan 21, 2026
99b87d4
Fix torch functional import aliases
yonigozlan Jan 21, 2026
4f2fa85
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Jan 22, 2026
52827f4
fix after merge with main
yonigozlan Jan 22, 2026
41a10c2
Fix missing copyrights
yonigozlan Jan 22, 2026
7821c47
Refactor HybridEncoder rt_detr
yonigozlan Jan 24, 2026
90741ba
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Jan 28, 2026
175d4cd
tie weights fix deformable detr
yonigozlan Jan 28, 2026
66ec416
Merge branch 'main' into refactor-detr
yonigozlan Jan 28, 2026
b254841
Merge branch 'main' into refactor-detr
yonigozlan Jan 28, 2026
209f4e6
Merge branch 'main' into refactor-detr
yonigozlan Jan 30, 2026
5b7a3f1
Merge remote-tracking branch 'upstream/main' into refactor-detr
yonigozlan Feb 2, 2026
4fe521b
Refactor pp docs layout + fix fp16 overflow
yonigozlan Feb 2, 2026
08a7308
fix modular
yonigozlan Feb 2, 2026
45a9b62
fix modular
yonigozlan Feb 2, 2026
f15aef7
fix deformable detr tests
yonigozlan Feb 2, 2026
037bbc9
Merge branch 'main' into refactor-detr
yonigozlan Feb 2, 2026
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
1 change: 1 addition & 0 deletions src/transformers/modeling_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ def is_local_dist_rank_0():
"qwen2_5_vl",
"videollava",
"vipllava",
"detr",

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure, do we need to add this here?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes that's what made me go crazy haha otherwise _checkpoint_conversion_mapping doesn't work.
Note that this is temporary and will be replaced by the new way to convert weights on the fly that @ArthurZucker and @Cyrilvallez are working on.

]


Expand Down
Loading