File size: 645 Bytes
718f306
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
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 images, passed the safety check
- Class 1: Fraudulent images of type 5- Inpaint and Rewriting found in the ID
- Class 2: Fraudulent images of type 6- Cropping and replacement found in the ID

## Usage

from transformers import pipeline

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