Text Classification
Transformers
Safetensors
German
bert
classification
NLP
Transformers
BERT
Reviews
text-embeddings-inference
Instructions to use Puidii/trustpilot_review_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Puidii/trustpilot_review_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Puidii/trustpilot_review_classifier")# Load model directly from transformers import AutoTokenizer, TrustpilotBERTClassifier tokenizer = AutoTokenizer.from_pretrained("Puidii/trustpilot_review_classifier") model = TrustpilotBERTClassifier.from_pretrained("Puidii/trustpilot_review_classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,4 +17,8 @@ tags:
|
|
| 17 |
- Transformers
|
| 18 |
- BERT
|
| 19 |
- Reviews
|
| 20 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
- Transformers
|
| 18 |
- BERT
|
| 19 |
- Reviews
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
##Github Repo: https://github.com/pattplatt/trustpilot-review-classification
|
| 23 |
+
|
| 24 |
+
##Project report: https://homepageblob.blob.core.windows.net/content/Using NLP Techniques to Infer Trustpilot Ratings from User Reviews.pdf
|