Views
No views yet
| 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 |
1from transformers import pipeline
2from PIL import Image
3
4pipe = pipeline("image-classification", model="your-username/bangladeshi-taka-classifier")
5
6img = Image.open("path/to/your_note.jpg")
7result = pipe(img)
8print(result)