Instructions to use simonschoe/TransformationTransformer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use simonschoe/TransformationTransformer with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="simonschoe/TransformationTransformer")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("simonschoe/TransformationTransformer") model = AutoModelForSequenceClassification.from_pretrained("simonschoe/TransformationTransformer") - Notebooks
- Google Colab
- Kaggle
Commit ·
af24f2b
1
Parent(s): bc444bb
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
pipeline_tag: text-classification
|
| 5 |
+
tags:
|
| 6 |
+
widget:
|
| 7 |
+
- text: "transformation"
|
| 8 |
+
example_title: "transformation"
|
| 9 |
+
- text: "sustainability"
|
| 10 |
+
example_title: "sustainability"
|
| 11 |
+
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model Card
|
| 15 |
+
|
| 16 |
+
Description here
|