Description
🐛 Describe the bug
When trying to import qwen2_5 module, I encountered the following error:
$ python3 -c "import examples.models.qwen2_5"
Traceback (most recent call last):
File "<string>", line 1, in <module>
File ".../executorch/examples/models/qwen2_5/__init__.py", line 4, in <module>
from executorch.example.models.llama.model import Llama2Model
ModuleNotFoundError: No module named 'executorch.example'
It seems that there is a typo in the import path in examples/models/qwen2_5/init.py.
Current (incorrect) import:
from executorch.example.models.llama.model import Llama2Model
Correct import:
from executorch.examples.models.llama.model import Llama2Model
This typo prevents the qwen2_5 module from being imported correctly.
Could you please fix this? Thank you! 🙏
Versions
Collecting environment information...
PyTorch version: N/A
Is debug build: N/A
CUDA used to build PyTorch: N/A
ROCM used to build PyTorch: N/A
OS: macOS 15.2 (arm64)
GCC version: Could not collect
Clang version: 19.1.7
CMake version: version 3.29.0
Libc version: N/A
Python version: 3.13.2 (main, Feb 4 2025, 14:51:09) [Clang 16.0.0 (clang-1600.0.26.6)] (64-bit runtime)
Python platform: macOS-15.2-arm64-arm-64bit-Mach-O
Is CUDA available: N/A
CUDA runtime version: Could not collect
CUDA_MODULE_LOADING set to: N/A
GPU models and configuration: Could not collect
Nvidia driver version: Could not collect
cuDNN version: Could not collect
HIP runtime version: N/A
MIOpen runtime version: N/A
Is XNNPACK available: N/A
CPU:
Apple M3 Max
Versions of relevant libraries:
[pip3] numpy==2.2.4
[conda] Could not collect
cc @larryliu0820 @mergennachin @cccclai @helunwencser @jackzhxng
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
To triage