khalid99ml's picture
updated model card
56fd49d verified
metadata
library_name: transformers
tags:
  - image-classification
  - bangladesh
  - banknote
  - currency
license: apache-2.0

πŸ‡§πŸ‡© 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)