Instructions to use PavanDeepak/bert_large_uncased_iab_categories_classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PavanDeepak/bert_large_uncased_iab_categories_classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="PavanDeepak/bert_large_uncased_iab_categories_classification")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("PavanDeepak/bert_large_uncased_iab_categories_classification") model = AutoModelForSequenceClassification.from_pretrained("PavanDeepak/bert_large_uncased_iab_categories_classification") - Notebooks
- Google Colab
- Kaggle
Non-printable UTF-8 characters
#1
by brothaz - opened
Hello! There are two labels in the config.json that contain non-printable UTF-8 encodings:
"224": "Health & Fitness, IBS/Crohn\u0019 s Disease",
"233": "Health & Fitness, Men\u0019 s Health",
Thanks!