Instructions to use bondarchukb/bert-ads-classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bondarchukb/bert-ads-classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="bondarchukb/bert-ads-classification")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("bondarchukb/bert-ads-classification") model = AutoModelForSequenceClassification.from_pretrained("bondarchukb/bert-ads-classification") - Notebooks
- Google Colab
- Kaggle
Commit ·
de9a4ff
1
Parent(s): b8eb90a
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# bert-base-cased for Advertisement Classification
|
| 2 |
|
| 3 |
This is best-base-cased model trained on the binary dataset prepared for advertisement classification. This model is suitable for English.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
|
| 6 |
# bert-base-cased for Advertisement Classification
|
| 7 |
|
| 8 |
This is best-base-cased model trained on the binary dataset prepared for advertisement classification. This model is suitable for English.
|