Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 1.08 KB

README.md

File metadata and controls

32 lines (18 loc) · 1.08 KB

Rock Paper Scissors Image Classifier

An ML model built with Keras Library to Classify Image that uploaded by Users to categorize it as Rock, Paper, or Scissors. Model was trained with dataset provided by Dicoding, which included 2000+ images of rock, paper, and scissors hands.

This notebook was a submission for IBM Indonesia New Collar and Skill Acceleration Center X Dicoding 2020

Open In Colab

Technology Used

✔️ TensorFlow (Keras)

✔️ Matplotlib

✔️ SciKitLearn

✔️ Numpy

Installation

  1. Run all the notebook cell until you asked for image to upload. You can test the model with any picture.

  2. After last cell is ran, the Model will be exported with name "rps_model.h5"

  3. To use the model, use the following code:

from tensorflow.keras.models import load_model
model = load_model('rps_model.h5')