Downloads · 30 days
13
28% of all-time downloads
Showroom/product_type_classifier
product_type_classifier is a text classification model from Showroom. Use it when you need a label for a piece of text. It is set up for transformers.
- Problem type: Multi-class Classification - Model ID: 60925134561 - CO2 Emissions (in grams): 0.8692
Downloads · 30 days
13
28% of all-time downloads
All-time downloads
46
Public
Repo size
2.7 GB
Likes
0
Public
Click a slice to open those files.
.bin1.3 GB · 100%
From the Hugging Face model README
You can use cURL to access this model:
$ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoTrain"}' https://api-inference.huggingface.co/models/Showroom/autotrain-product_categories-60925134561
Or Python API:
from transformers import AutoModelForSequenceClassification, AutoTokenizer
model = AutoModelForSequenceClassification.from_pretrained("Showroom/autotrain-product_categories-60925134561", use_auth_token=True)
tokenizer = AutoTokenizer.from_pretrained("Showroom/autotrain-product_categories-60925134561", use_auth_token=True)
inputs = tokenizer("I love AutoTrain", return_tensors="pt")
outputs = model(**inputs)