Update README.md
Browse files
README.md
CHANGED
|
@@ -40,7 +40,7 @@ It achieves the following results on the evaluation set:
|
|
| 40 |
|
| 41 |
## Model details
|
| 42 |
|
| 43 |
-
- **Fine-tuned by:**
|
| 44 |
- **Model type:** distilroberta-base
|
| 45 |
- **Language(s) (NLP):** English
|
| 46 |
- **License:** Apache license 2.0
|
|
@@ -62,8 +62,8 @@ Additionally, `distilroberta-base` is case-sensitive model.
|
|
| 62 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 63 |
import torch
|
| 64 |
|
| 65 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
| 66 |
-
model = AutoModelForSequenceClassification.from_pretrained("
|
| 67 |
|
| 68 |
classifier = pipeline(
|
| 69 |
"text-classification",
|
|
@@ -85,8 +85,8 @@ Loading the model requires the [🤗 Optimum](https://huggingface.co/docs/optimu
|
|
| 85 |
from optimum.onnxruntime import ORTModelForSequenceClassification
|
| 86 |
from transformers import AutoTokenizer, pipeline
|
| 87 |
|
| 88 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
| 89 |
-
model = ORTModelForSequenceClassification.from_pretrained("
|
| 90 |
|
| 91 |
classifier = pipeline(
|
| 92 |
task="text-classification",
|
|
@@ -152,10 +152,10 @@ get help for package usage or contributions, or engage in discussions about LLM
|
|
| 152 |
|
| 153 |
```
|
| 154 |
@misc{distilroberta-base-rejection-v1,
|
| 155 |
-
author = {
|
| 156 |
title = {Fine-Tuned DistilRoberta-Base for Rejection in the output Detection},
|
| 157 |
year = {2024},
|
| 158 |
publisher = {HuggingFace},
|
| 159 |
-
url = {https://huggingface.co/
|
| 160 |
}
|
| 161 |
```
|
|
|
|
| 40 |
|
| 41 |
## Model details
|
| 42 |
|
| 43 |
+
- **Fine-tuned by:** ProtectAI.com
|
| 44 |
- **Model type:** distilroberta-base
|
| 45 |
- **Language(s) (NLP):** English
|
| 46 |
- **License:** Apache license 2.0
|
|
|
|
| 62 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 63 |
import torch
|
| 64 |
|
| 65 |
+
tokenizer = AutoTokenizer.from_pretrained("ProtectAI/distilroberta-base-rejection-v1")
|
| 66 |
+
model = AutoModelForSequenceClassification.from_pretrained("ProtectAI/distilroberta-base-rejection-v1")
|
| 67 |
|
| 68 |
classifier = pipeline(
|
| 69 |
"text-classification",
|
|
|
|
| 85 |
from optimum.onnxruntime import ORTModelForSequenceClassification
|
| 86 |
from transformers import AutoTokenizer, pipeline
|
| 87 |
|
| 88 |
+
tokenizer = AutoTokenizer.from_pretrained("ProtectAI/distilroberta-base-rejection-v1", subfolder="onnx")
|
| 89 |
+
model = ORTModelForSequenceClassification.from_pretrained("ProtectAI/distilroberta-base-rejection-v1", export=False, subfolder="onnx")
|
| 90 |
|
| 91 |
classifier = pipeline(
|
| 92 |
task="text-classification",
|
|
|
|
| 152 |
|
| 153 |
```
|
| 154 |
@misc{distilroberta-base-rejection-v1,
|
| 155 |
+
author = {ProtectAI.com},
|
| 156 |
title = {Fine-Tuned DistilRoberta-Base for Rejection in the output Detection},
|
| 157 |
year = {2024},
|
| 158 |
publisher = {HuggingFace},
|
| 159 |
+
url = {https://huggingface.co/ProtectAI/distilroberta-base-rejection-v1},
|
| 160 |
}
|
| 161 |
```
|