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
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
---
|
| 2 |
language: en
|
| 3 |
-
license:
|
| 4 |
library_name: transformers
|
| 5 |
tags:
|
| 6 |
- text-classification
|
|
@@ -129,4 +129,4 @@ The synthetic dataset is published at [DoDataThings/us-bank-transaction-categori
|
|
| 129 |
|
| 130 |
## License
|
| 131 |
|
| 132 |
-
|
|
|
|
| 1 |
---
|
| 2 |
language: en
|
| 3 |
+
license: apache-2.0
|
| 4 |
library_name: transformers
|
| 5 |
tags:
|
| 6 |
- text-classification
|
|
|
|
| 129 |
|
| 130 |
## License
|
| 131 |
|
| 132 |
+
Apache 2.0
|