Instructions to use Mit1208/phi-2-universal-NER with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Mit1208/phi-2-universal-NER with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("microsoft/phi-2") model = PeftModel.from_pretrained(base_model, "Mit1208/phi-2-universal-NER") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -22,7 +22,9 @@ This model shows power of small language model. We can finetune phi-2 on google
|
|
| 22 |
|
| 23 |
## Intended uses & limitations
|
| 24 |
|
| 25 |
-
This model is fine tuned from Phi-2 and UniversalNER dataset.
|
|
|
|
|
|
|
| 26 |
|
| 27 |
## Training and evaluation data
|
| 28 |
|
|
|
|
| 22 |
|
| 23 |
## Intended uses & limitations
|
| 24 |
|
| 25 |
+
This model is fine tuned from Phi-2 and UniversalNER dataset.
|
| 26 |
+
|
| 27 |
+
Phi-2 model license changed to MIT but UniversalNER is still under research license so this model can be used for research purpose only.
|
| 28 |
|
| 29 |
## Training and evaluation data
|
| 30 |
|