Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.15 KB

readme.md

File metadata and controls

47 lines (32 loc) · 1.15 KB

Computer Vision

Run

1. Create virtual environment

python3 -m venv ./venv

2. Install libraries

pip3 install -r requirements.txt

3. Prepare dataset

  • You can find dataset I use here

4. Create train, validate dataset and begin to train your model

  • Create necessary folder
mkdir resources
  • You must follow all steps in main.ipynb
  • After training, please save your model(under filename vgg16_1.h5) and metadata file(metadata.json) to resources.

5. Run demo app

make run

Reference