detector-clickbait-br-model
1
license:mit
by
rodrigoaraujorosa
Other
OTHER
New
0 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
Como Usarbash
python -m venv .venv
source ./.venv/Scripts/activate
pip install scikit-learn nltk pandas numpy huggingface_hub ipywidgetsComo Usarpython
from huggingface_hub import hf_hub_download
import pickle
# Download dos arquivos
modelo_path = hf_hub_download(
repo_id="rodrigoaraujorosa/detector-clickbait-br-model",
filename="melhor_modelo.pkl"
)
tfidf_path = hf_hub_download(
repo_id="rodrigoaraujorosa/detector-clickbait-br-model",
filename="tfidf_vectorizer.pkl"
)
scaler_path = hf_hub_download(
repo_id="rodrigoaraujorosa/detector-clickbait-br-model",
filename="scaler.pkl"
)
# Carregar
with open(modelo_path, 'rb') as f:
modelo = pickle.load(f)
with open(tfidf_path, 'rb') as f:
tfidf = pickle.load(f)
with open(scaler_path, 'rb') as f:
scaler = pickle.load(f)Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.