-
Notifications
You must be signed in to change notification settings - Fork 31.3k
Closed
Labels
Description
convert_deepseek_vl_weights_to_hf.py, introduced in #36248, is in main but not in the v4.55.0 release.
This causes the following two tests to fail:
- tests/models/deepseek_vl/test_processing_deepseek_vl.py
- tests/models/deepseek_vl_hybrid/test_processing_deepseek_vl_hybrid.py
ImportError while importing test module 'tests/models/deepseek_vl/test_processing_deepseek_vl.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
tests/models/deepseek_vl/test_processing_deepseek_vl.py:19: in <module>
from transformers.models.deepseek_vl.convert_deepseek_vl_weights_to_hf import CHAT_TEMPLATE
E ModuleNotFoundError: No module named 'transformers.models.deepseek_vl.convert_deepseek_vl_weights_to_hf'
ImportError while importing test module 'tests/models/deepseek_vl_hybrid/test_processing_deepseek_vl_hybrid.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
tests/models/deepseek_vl_hybrid/test_processing_deepseek_vl_hybrid.py:19: in <module>
from transformers.models.deepseek_vl.convert_deepseek_vl_weights_to_hf import CHAT_TEMPLATE
E ModuleNotFoundError: No module named 'transformers.models.deepseek_vl.convert_deepseek_vl_weights_to_hf'
Who can help?
@geetu040 @zucchini-nlp @ArthurZucker
Information
- The official example scripts
- My own modified scripts
Reproduction
Run tests on v4.55.0 release.
Expected behavior
Tests pass.
geetu040