autotrain text-classification

Model Trained Using AutoTrain

Validation Metrics

Usage

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/zgoovw/autotrain-bert-base-japanese-classify-42185108358

Or Python API:

from transformers import AutoModelForSequenceClassification, AutoTokenizer

model = AutoModelForSequenceClassification.from_pretrained("zgoovw/autotrain-bert-base-japanese-classify-42185108358", use_auth_token=True)

tokenizer = AutoTokenizer.from_pretrained("zgoovw/autotrain-bert-base-japanese-classify-42185108358", use_auth_token=True)

inputs = tokenizer("I love AutoTrain", return_tensors="pt")

outputs = model(**inputs)

Licenses

The pretrained models are distributed under the terms of the Creative Commons Attribution-ShareAlike 3.0.