Skip to content

Commit

Permalink
Fix path to local Llama file
Browse files Browse the repository at this point in the history
  • Loading branch information
stbaione committed Jan 24, 2025
1 parent 5777acc commit 7024793
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app_tests/integration_tests/llm/shortfin/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
),
"llama3.1_8b": ModelConfig(
source=ModelSource.LOCAL,
local_path=Path("/data/llama3.1/weights/8b/llama3.1_8b_fp16_instruct.irpa"),
local_path=Path(
"/data/llama3.1/weights/8b/fp16/llama3.1_8b_fp16_instruct.irpa"
),
model_file="llama3.1_8b_fp16_instruct.irpa",
tokenizer_id="NousResearch/Meta-Llama-3.1-8B",
batch_sizes=(1, 4),
Expand Down

0 comments on commit 7024793

Please sign in to comment.