Text Classification
Transformers
TensorFlow
bert
generated_from_keras_callback
text-embeddings-inference
Instructions to use jonaskoenig/topic_classification_04 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jonaskoenig/topic_classification_04 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="jonaskoenig/topic_classification_04")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("jonaskoenig/topic_classification_04") model = AutoModelForSequenceClassification.from_pretrained("jonaskoenig/topic_classification_04") - Notebooks
- Google Colab
- Kaggle
Dataset availibility
#2
by roma999 - opened
Thank you for your amazing efforts I would like to know if the dataset for this model is public, and if so how can I access it?
Hey,
The Dataset used is yahoo_answers_topics.
The question title and content were combined and separated from the best answer. This doubled the usable Data.