File size: 1,068 Bytes
3382e7f
 
40da349
 
 
 
b4f67fa
40da349
3382e7f
40da349
3382e7f
 
 
 
 
 
 
 
40da349
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
tags:
  - fastai
  - resnet
  - computer-vision
  - classification
  - image-classification
  - binary-classification
license:
  - cc0-1.0
---

# Resnet34 Pokemon Card Classifier

## Model Description

This is a resnet34 model fine-tuned with fastai to [classify real and fake Pokemon cards (dataset)](https://www.kaggle.com/datasets/ongshujian/real-and-fake-pokemon-cards).

Here is a colab notebook that shows how the model was trained and pushed to the hub: [link](https://github.com/mindwrapped/pokemon-card-checker/blob/main/pokemon_card_checker.ipynb).

## Intended uses & limitation

This model is trained to identify real vs fake cards based on the backs of the cards, not the front.

## How to use

```python
from huggingface_hub import from_pretrained_fastai

# Pull model from hub
learn = from_pretrained_fastai('hugginglearners/pokemon-card-checker')

# Get prediction for this image
pred_label, _, scores = learn.predict(img)
```

## Training data

Dataset located here: [link](https://www.kaggle.com/datasets/ongshujian/real-and-fake-pokemon-cards).