YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)
ST2 LinearSVC Models
This repository contains two sklearn LinearSVC pipelines for the ST2 experiment:
hazard_model.pklโ predicts the hazard category from title + text.product_model.pklโ predicts the product category (conditional on hazard prediction).
Input
- Combined
title + textas a single string.
Usage
import joblib
from huggingface_hub import hf_hub_download
# Hazard model
hazard_path = hf_hub_download(repo_id='Samrudhi013/st2-linear-svc', filename='hazard_model.pkl')
hazard_model = joblib.load(hazard_path)
# Product model
product_path = hf_hub_download(repo_id='Samrudhi013/st2-linear-svc', filename='product_model.pkl')
product_model = joblib.load(product_path)
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support