--- language: - en license: mit tags: - text-classification - bbc-news pipeline_tag: token-classification --- # BBC News Article Classifier This model classifies BBC news articles into categories. ## Usage ```python from transformers import pipeline classifier = pipeline("token-classification", model="hfastino/bbc-news-article-classifier") result = classifier("Your article text here...") ``` ## Example ```python text = "The Prime Minister announced new economic policies today..." result = classifier(text) print(result) ```