Text Classification
Transformers
ONNX
Safetensors
Transformers.js
English
distilbert
finance
transactions
text-embeddings-inference
Instructions to use DoDataThings/distilbert-us-transaction-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DoDataThings/distilbert-us-transaction-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="DoDataThings/distilbert-us-transaction-classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("DoDataThings/distilbert-us-transaction-classifier") model = AutoModelForSequenceClassification.from_pretrained("DoDataThings/distilbert-us-transaction-classifier") - Transformers.js
How to use DoDataThings/distilbert-us-transaction-classifier with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('text-classification', 'DoDataThings/distilbert-us-transaction-classifier'); - Notebooks
- Google Colab
- Kaggle
File too large to display, you can check the raw version instead.