IrishMehta's picture
Update model with proper task configuration
0eddaea verified
metadata
language: en
license: mit
tags:
  - image-classification
  - computer-vision
  - fraud-detection
pipeline_tag: image-classification

Fraud Detection Image Classification Model

This model classifies images into 3 classes:

  • Class 0: Non fraudulent image, passed the safety check
  • Class 1: Fraudulent image, failed the safety check

Usage

from transformers import pipeline

classifier = pipeline("image-classification", model="IrishMehta/fraud-detection-idnet-two-class") result = classifier("path/to/image.jpg") print(result)