Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 833 Bytes

README.md

File metadata and controls

35 lines (20 loc) · 833 Bytes

Rdarknet

Build Status

Introduction

Darknet is an open source neural network framework written in C and CUDA. This package only exposes a function to run a detector on a pre-trained model.

Usage

Type the following lines in an R session:

require(Rdarknet)
run_detector(0.3, "cfg/yolo.weights", "cfg/coco.dat", "cfg/yolo.cfg",
             "data/dog.jpg", "out.jpg")

Please note the weights are not included in the package and need to be downloaded here.

Installation

To install the package, run the following command in a terminal:

$ R -e "devtools::install_github('edoffagne/Rdarknet')"