Update README.md
Browse files
README.md
CHANGED
@@ -23,7 +23,8 @@ model = AutoModelForSequenceClassification.from_pretrained("Social-Media-Fairnes
|
|
23 |
classifier = pipeline("text-classification", model=model, tokenizer=tokenizer)
|
24 |
result = classifier("you are stupid")
|
25 |
print(result)
|
26 |
-
|
|
|
27 |
# Caveats and Limitations
|
28 |
The model's training data originates from a specific dataset (BABE) which might not represent all kinds of biases or content.
|
29 |
The performance metrics are based on a random validation split, so the model's performance might vary in real-world applications.
|
|
|
23 |
classifier = pipeline("text-classification", model=model, tokenizer=tokenizer)
|
24 |
result = classifier("you are stupid")
|
25 |
print(result)
|
26 |
+
```
|
27 |
+
|
28 |
# Caveats and Limitations
|
29 |
The model's training data originates from a specific dataset (BABE) which might not represent all kinds of biases or content.
|
30 |
The performance metrics are based on a random validation split, so the model's performance might vary in real-world applications.
|