From c48c282b33ee1c3d78e7e66ee8585f78f7ada76c Mon Sep 17 00:00:00 2001 From: Ryan Hill Date: Mon, 26 Feb 2024 18:43:14 -0800 Subject: [PATCH] Rename to phi-2 streaming --- examples/phi2/{phi2-loop.py => phi2-streaming.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename examples/phi2/{phi2-loop.py => phi2-streaming.py} (92%) diff --git a/examples/phi2/phi2-loop.py b/examples/phi2/phi2-streaming.py similarity index 92% rename from examples/phi2/phi2-loop.py rename to examples/phi2/phi2-streaming.py index 688fa324a..e169bbf81 100644 --- a/examples/phi2/phi2-loop.py +++ b/examples/phi2/phi2-streaming.py @@ -3,7 +3,7 @@ print("Loading model...") # The first argument is the name of the folder containing the model files -model=og.Model("example-models/phi2-int4-cpu", og.DeviceType.CPU) +model=og.Model("model", og.DeviceType.CPU) print("Model loaded") tokenizer=model.create_tokenizer() print("Tokenizer created")