π§π© Bangladeshi Taka Banknote Classifier
This model is an image classifier that recognizes the denomination of Bangladeshi banknotes (paper currency).
It was fine-tuned on the Jakir057/bangladeshi_banknotes_70k dataset using EfficientNet-B0 as the backbone.
π Model Details
| Model Architecture | EfficientNet-B0 |
| Fine-tuned From | google/efficientnet-b0 |
| Dataset | Jakir057/bangladeshi_banknotes_70k |
| Number of Classes | 8 (2, 5, 10, 20, 50, 100, 500, 1000 Taka) |
| Input | Banknote image (RGB, clear view of the note) |
| License | Apache 2.0 |
π Quick Start
from transformers import pipeline
from PIL import Image
pipe = pipeline("image-classification", model="your-username/bangladeshi-taka-classifier")
img = Image.open("path/to/your_note.jpg")
result = pipe(img)
print(result)
- Downloads last month
- 5