Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
fcc53d6
added baremin backbone and vision encoders for qwen2_vl
sam-shubham Feb 14, 2026
95041f1
fixed backbone and tests
sam-shubham Feb 14, 2026
d11660e
Merge branch 'keras-team:master' into qwen2_vl
sam-shubham Feb 14, 2026
e7faa8d
added causal_lm image converter and tokenizer
sam-shubham Feb 14, 2026
2154671
fixed causal lm and tests
sam-shubham Feb 14, 2026
ea5c16f
fixed decoder attention and vision encoder
sam-shubham Feb 14, 2026
be04323
added tokenizer tests
sam-shubham Feb 14, 2026
a00bdb3
added presets , converter and checkpoints
sam-shubham Feb 14, 2026
bc9e3db
Added Qwen2_VL
sam-shubham Feb 14, 2026
08a5d2b
fix tokenizer as per hugging face req
sam-shubham Feb 15, 2026
acc021c
fixed tokenizer as per hugging face
sam-shubham Feb 15, 2026
d0f3c40
fixed backbone for inputs not connected to output
sam-shubham Feb 15, 2026
ac569b9
fixed backbone for inputs not connected to output
sam-shubham Feb 15, 2026
2a120a8
added visiion encoder to backbone constructor
sam-shubham Feb 15, 2026
3eb4470
fixed configuration and multimodel transformer issues
sam-shubham Feb 15, 2026
bb69a65
fix M-RoPE generation bug, refactor tokenizer, add smart_resize
sam-shubham Feb 19, 2026
035496c
fix M-RoPE generation bug, refactor tokenizer, add smart_resize
sam-shubham Feb 20, 2026
bc62497
fixed formatting issues
sam-shubham Feb 20, 2026
03312a1
dixed torch specific M-RoPE fixes
sam-shubham Feb 20, 2026
130a230
feat: add end-to-end generation validation to Qwen2-VL checkpoint con…
sam-shubham Feb 28, 2026
a1148bd
fixed formating errors and others
sam-shubham Feb 28, 2026
342e534
refactor: Remove explicit channels_last data format handling for Conv…
sam-shubham Feb 28, 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
13 changes: 13 additions & 0 deletions keras_hub/src/models/qwen2_vl/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright 2025 The KerasHub Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Loading
Loading