wishgale / KerasObjectDetector

Keras Object Detection API with YOLK project 🍳

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

YOLK: Keras Object Detection API

You Only Look Keras

Object Language DeepLearning KerasKorea KerasKorea

Every year newly developed Object Detection architectures are introduced, but even applying the simplest ones has been something with, or perhaps more than, a big hassle so far. YOLKYou Look Only Keras is an one-stop Object Detection API for Keras, which is built as a part of 2019 Open Source Contributhon. It shares the idea of what Keras is created for: Being able to go from idea to result with the least possible delay is key to doing good research. With a few lines of codes, you can set up and apply one of the best performing models to your own datasets. We hope this can help everyone train their own Object Detection models painlessly.

Detailed instructions will be updated soon.πŸ€“

Contents

KerasObjectDetector
β”œβ”€β”€ datasets
β”œβ”€β”€ docker
β”œβ”€β”€ examples
β”‚   β”œβ”€β”€ ResNet50RetinaNet
β”‚   β”œβ”€β”€ YOLOv3_Prediction
β”‚   β”œβ”€β”€ YOLOv3_Training
β”‚   β”œβ”€β”€ retinanet_inference_example
β”‚   β”œβ”€β”€ retinanet_training_example
β”‚   β”œβ”€β”€ ssd_inference_example
β”‚   └── ssd_training_example
β”œβ”€β”€ keras_retinanet
β”œβ”€β”€ keras_ssd
β”œβ”€β”€ keras_yolov3
β”œβ”€β”€ res
β”œβ”€β”€ tests
β”œβ”€β”€ yolk
β”œβ”€β”€ .gitignore
β”œβ”€β”€ LICENSE
β”œβ”€β”€ README.md
β”œβ”€β”€ setup.cfg
β”œβ”€β”€ setup.py

Download YOLK API. This API helps setting up development environment for Object Detection tasks. Run the following commands in terminal.

  # Download YOLK API
  $ git clone https://github.com/KerasKorea/KerasObjectDetector.git
  $ cd KerasObjectDetector

  # If there is no 'setuptools' in docker, please download this package.
  # pip install setuptools
  # install library
  $ apt-get install libatlas-base-dev libxml2-dev libxslt-dev python-tk
  
  # build setup codes
  # ./KerasObjectDetector
  $ python setup.py install

If you want to run the API on a docker, download our pre-built docker image from Docker HUB and run.

  #  pull yolk docker image
  $ docker pull kerasyolk/yolk

  # run yolk
  $ docker run --name=yolk -Pit -p 8888:8888 -p 8022:22 kerasyolk/yolk:latest

  # running jupyter-notebook
  $ jupyter-notebook

You can test your own image with a Quick Start :)

Name Version(Min)
Tensorflow 1.14.0
Keras 2.3.0
Python 3.6
Numpy 1.14
Matplotlib latest
SciPy 0.14
h5py latest
Pillow latest
progressbar2 latest
opencv-python 3.3.0
six 1.9.0
PyYAML latest
Cython latest

ver 1.0.0 (November 20, 2019)

The initial version of YOLK API has been completed. This release includes:

  1. Three Object Detection models and one data generator. (More models will be included in a future version). The generator converts datasets into a suitable format for a selected model.
  2. Docker files for quick development environment setup.
  3. Easy and detailed Object Detection tutorials (SSD+VOC2012).

Thanks goes to these beautiful people (github ID) : @fuzzythecat, @mijeongjeon, @tykimos, @SooDevv, @karl6885, @EthanJYK, @minus31, @young917, @mike2ox, @hngskj, @hics33, @aaajeong, @parkjh688, @Uwonsang, @simba328, @visionNoob, @Naruu, @melonicedlatte, @magh0, @ahracho

About

Keras Object Detection API with YOLK project 🍳

License:MIT License


Languages

Language:Jupyter Notebook 55.4%Language:Python 44.4%Language:Dockerfile 0.2%Language:Shell 0.0%