Fix repository name in usage examples
Browse files
README.md
CHANGED
|
@@ -65,7 +65,7 @@ pip install openvino-genai huggingface-hub
|
|
| 65 |
from openvino_genai import LLMPipeline
|
| 66 |
|
| 67 |
# Load and run on Intel NPU
|
| 68 |
-
pipe = LLMPipeline("
|
| 69 |
|
| 70 |
# Generate text
|
| 71 |
response = pipe.generate("Explain quantum computing:", max_new_tokens=100)
|
|
@@ -128,7 +128,7 @@ If you use this model, please cite:
|
|
| 128 |
title={Phi-4-mini-instruct INT4_SYM for Intel NPU},
|
| 129 |
author={OpenVINO Community},
|
| 130 |
year={2025},
|
| 131 |
-
howpublished={\url{https://huggingface.co/
|
| 132 |
}
|
| 133 |
```
|
| 134 |
|
|
|
|
| 65 |
from openvino_genai import LLMPipeline
|
| 66 |
|
| 67 |
# Load and run on Intel NPU
|
| 68 |
+
pipe = LLMPipeline("AhtnaGlen/phi-4-mini-instruct-int4-sym-npu-ov", device="NPU")
|
| 69 |
|
| 70 |
# Generate text
|
| 71 |
response = pipe.generate("Explain quantum computing:", max_new_tokens=100)
|
|
|
|
| 128 |
title={Phi-4-mini-instruct INT4_SYM for Intel NPU},
|
| 129 |
author={OpenVINO Community},
|
| 130 |
year={2025},
|
| 131 |
+
howpublished={\url{https://huggingface.co/AhtnaGlen/phi-4-mini-instruct-int4-sym-npu-ov}},
|
| 132 |
}
|
| 133 |
```
|
| 134 |
|