Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 1 addition & 1 deletion .ci/scripts/test_model.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ test_model() {
bash examples/models/llava/install_requirements.sh
STRICT="--no-strict"
fi
if [[ "${MODEL_NAME}" == "qwen2_5" ]]; then
if [[ "${MODEL_NAME}" == "qwen2_5_1_5b" ]]; then
# Install requirements for export_llama
bash examples/models/llama/install_requirements.sh
# Test export_llm script: python3 -m extension.llm.export.export_llm.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ jobs:
- model: phi_4_mini
backend: portable
runner: linux.arm64.m7g.4xlarge
- model: qwen2_5
- model: qwen2_5_1_5b
backend: portable
runner: linux.arm64.2xlarge
- model: llama3_2_vision_encoder
Expand Down
2 changes: 1 addition & 1 deletion examples/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Model(str, Enum):
ResNet50 = "resnet50"
Llava = "llava"
EfficientSam = "efficient_sam"
Qwen25 = "qwen2_5"
Qwen25 = "qwen2_5_1_5b"
Phi4Mini = "phi_4_mini"
SmolLM2 = "smollm2"

Expand Down
Loading