Instructions to use vishnun/lora-NLIGraph with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use vishnun/lora-NLIGraph with PEFT:
from peft import PeftModel from transformers import AutoModelForTokenClassification base_model = AutoModelForTokenClassification.from_pretrained("roberta-large") model = PeftModel.from_pretrained(base_model, "vishnun/lora-NLIGraph") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
## Training procedure
|
| 5 |
|
|
@@ -60,4 +72,4 @@ for token, prediction in zip(tokens, predictions[0].numpy()):
|
|
| 60 |
### Framework versions
|
| 61 |
|
| 62 |
|
| 63 |
-
- PEFT 0.4.0
|
|
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
| 3 |
+
license: mit
|
| 4 |
+
datasets:
|
| 5 |
+
- vishnun/NLP-KnowledgeGraph
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
metrics:
|
| 9 |
+
- accuracy
|
| 10 |
+
pipeline_tag: token-classification
|
| 11 |
+
tags:
|
| 12 |
+
- nlp
|
| 13 |
+
- deep learning
|
| 14 |
+
- code
|
| 15 |
---
|
| 16 |
## Training procedure
|
| 17 |
|
|
|
|
| 72 |
### Framework versions
|
| 73 |
|
| 74 |
|
| 75 |
+
- PEFT 0.4.0
|