Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit d00e54f

Browse files
committed
update
Signed-off-by: minmingzhu <[email protected]>
1 parent edb0d6a commit d00e54f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/workflow_finetune.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
147147
- name: Run Deltatuner Test on DENAS-LoRA Model
148148
run: |
149-
if [[ ${{ matrix.model }} =~ ^(mosaicml\/mpt-7b-chat|huggyllama\/llama-7b|meta-llama\/Llama-2-7b-chat-hf|mistralai\/Mistral-7B-v0.1|google\/gemma-2b)$ ]]; then
149+
if [[ ${{ matrix.model }} =~ ^(mosaicml\/mpt-7b-chat|huggyllama\/llama-7b|meta-llama\/Llama-2-7b-chat-hf|mistralai\/Mistral-7B-v0.1|mistralai\/Mixtral-8x7B-Instruct-v0.1)$ ]]; then
150150
echo ${{ matrix.model }} is not supported!
151151
else
152152
docker exec "finetune" bash -c "rm -rf /tmp/llm-ray/*"

.github/workflows/workflow_inference.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
- name: Run Inference Test with DeepSpeed
160160
run: |
161161
TARGET=${{steps.target.outputs.target}}
162-
if [[ ${{ matrix.model }} =~ ^(gpt2|falcon-7b|starcoder|mpt-7b.*)$ ]]; then
162+
if [[ ${{ matrix.model }} =~ ^(mixtral-8x7b-Instruct-v0.1|gpt2|falcon-7b|starcoder|mpt-7b.*)$ ]]; then
163163
echo ${{ matrix.model }} is not supported!
164164
elif [[ ! ${{ matrix.model }} == "llama-2-7b-chat-hf-vllm" ]]; then
165165
docker exec "${TARGET}" bash -c "python .github/workflows/config/update_inference_config.py --config_file llm_on_ray/inference/models/\"${{ matrix.model }}\".yaml --output_file \"${{ matrix.model }}\".yaml.deepspeed --deepspeed"
@@ -172,7 +172,7 @@ jobs:
172172
if: ${{ matrix.dtuner_model }}
173173
run: |
174174
TARGET=${{steps.target.outputs.target}}
175-
if [[ ${{ matrix.model }} =~ ^(gpt2|falcon-7b|starcoder|mpt-7b.*)$ ]]; then
175+
if [[ ${{ matrix.model }} =~ ^(mixtral-8x7b-Instruct-v0.1|gpt2|falcon-7b|starcoder|mpt-7b.*)$ ]]; then
176176
echo ${{ matrix.model }} is not supported!
177177
else
178178
docker exec "${TARGET}" bash -c "llm_on_ray-serve --config_file .github/workflows/config/mpt_deltatuner_deepspeed.yaml --simple"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies = [
3939

4040
[project.optional-dependencies]
4141
cpu = [
42-
"transformers>=4.35.0, <=4.35.2",
42+
"transformers>=4.36.0, <=4.38.1",
4343
"intel_extension_for_pytorch>=2.2.0",
4444
"torch>=2.2.0",
4545
"oneccl_bind_pt>=2.2.0"

0 commit comments

Comments
 (0)