🧠
Model

Tweet Topic 19 Single

by cardiffnlp hf-model--cardiffnlp--tweet-topic-19-single
Nexus Index
23.9 Top 100%
S: Semantic 50
A: Authority 0
P: Popularity 2
R: Recency 8
Q: Quality 50
Tech Context
Vital Performance
15 DL / 30D
0.0%
Audited 23.9 FNI Score
Tiny - Params
- Context
15 Downloads
Model Information Summary
Entity Passport
Registry ID hf-model--cardiffnlp--tweet-topic-19-single
Provider huggingface
📜

Cite this model

Academic & Research Attribution

BibTeX
@misc{hf_model__cardiffnlp__tweet_topic_19_single,
  author = {cardiffnlp},
  title = {Tweet Topic 19 Single Model},
  year = {2026},
  howpublished = {\url{https://huggingface.co/cardiffnlp/tweet-topic-19-single}},
  note = {Accessed via Free2AITools Knowledge Fortress}
}
APA Style
cardiffnlp. (2026). Tweet Topic 19 Single [Model]. Free2AITools. https://huggingface.co/cardiffnlp/tweet-topic-19-single

đŸ”ŦTechnical Deep Dive

Full Specifications [+]

Quick Commands

🤗 HF Download
huggingface-cli download cardiffnlp/tweet-topic-19-single
đŸ“Ļ Install Lib
pip install -U transformers

âš–ī¸ Nexus Index V2.0

23.9
TOP 100% SYSTEM IMPACT
Semantic (S) 50
Authority (A) 0
Popularity (P) 2
Recency (R) 8
Quality (Q) 50

đŸ’Ŧ Index Insight

FNI V2.0 for Tweet Topic 19 Single: Semantic (S:50), Authority (A:0), Popularity (P:2), Recency (R:8), Quality (Q:50).

Free2AITools Nexus Index

Verification Authority

Unbiased Data Node Refresh: VFS Live
---

🚀 What's Next?

Technical Deep Dive

tweet-topic-19-single

This is a roBERTa-base model trained on ~90m tweets until the end of 2019 (see here), and finetuned for single-label topic classification on a corpus of 6,997 tweets. The original roBERTa-base model can be found here and the original reference paper is TweetEval. This model is suitable for English.

Labels:

  • 0 -> arts_&_culture;
  • 1 -> business_&_entrepreneurs;
  • 2 -> pop_culture;
  • 3 -> daily_life;
  • 4 -> sports_&_gaming;
  • 5 -> science_&_technology

Full classification example

python
from transformers import AutoModelForSequenceClassification, TFAutoModelForSequenceClassification
from transformers import AutoTokenizer
import numpy as np
from scipy.special import softmax

    
MODEL = f"cardiffnlp/tweet-topic-19-single"
tokenizer = AutoTokenizer.from_pretrained(MODEL)

# PT
model = AutoModelForSequenceClassification.from_pretrained(MODEL)
class_mapping = model.config.id2label

text = "Tesla stock is on the rise!"
encoded_input = tokenizer(text, return_tensors='pt')
output = model(**encoded_input)

scores = output[0][0].detach().numpy()
scores = softmax(scores)

# TF
#model = TFAutoModelForSequenceClassification.from_pretrained(MODEL)
#class_mapping = model.config.id2label
#text = "Tesla stock is on the rise!"
#encoded_input = tokenizer(text, return_tensors='tf')
#output = model(**encoded_input)
#scores = output[0][0]
#scores = softmax(scores)


ranking = np.argsort(scores)
ranking = ranking[::-1]
for i in range(scores.shape[0]):
    l = class_mapping[ranking[i]]
    s = scores[ranking[i]]
    print(f"{i+1}) {l} {np.round(float(s), 4)}")

Output:

text
1) business_&_entrepreneurs 0.8575
2) science_&_technology 0.0604
3) pop_culture 0.0295
4) daily_life 0.0217
5) sports_&_gaming 0.0154
6) arts_&_culture 0.0154

âš ī¸ Incomplete Data

Some information about this model is not available. Use with Caution - Verify details from the original source before relying on this data.

View Original Source →

📝 Limitations & Considerations

  • â€ĸ Benchmark scores may vary based on evaluation methodology and hardware configuration.
  • â€ĸ VRAM requirements are estimates; actual usage depends on quantization and batch size.
  • â€ĸ FNI scores are relative rankings and may change as new models are added.
  • ⚠ License Unknown: Verify licensing terms before commercial use.

Social Proof

HuggingFace Hub
15Downloads
🔄 Daily sync (03:00 UTC)

AI Summary: Based on Hugging Face metadata. Not a recommendation.

📊 FNI Methodology 📚 Knowledge Baseâ„šī¸ Verify with original source

đŸ›Ąī¸ Model Transparency Report

Technical metadata sourced from upstream repositories.

Open Metadata

🆔 Identity & Source

id
hf-model--cardiffnlp--tweet-topic-19-single
slug
cardiffnlp--tweet-topic-19-single
source
huggingface
author
cardiffnlp
license
tags
transformers, pytorch, tf, roberta, text-classification, arxiv:2202.03829, arxiv:2209.09824, text-embeddings-inference, endpoints_compatible, region:us

âš™ī¸ Technical Specs

architecture
null
params billions
null
context length
null
pipeline tag
text-classification

📊 Engagement & Metrics

downloads
15
stars
0
forks
0

Data indexed from public sources. Updated daily.