-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.Rmd
33 lines (21 loc) · 1.11 KB
/
README.Rmd
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
---
output:
md_document:
variant: markdown_github
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
# ssdkeras package - Under Construction, use at your own risk
This is a R port to [Pierluigi Ferrari's Python implementation](https://github.com/pierluigiferrari/ssd_keras) of Single Shot Multibox Detector - [SSD](https://arxiv.org/abs/1512.02325).
See how to use it for detecting eyes, nose and mouth on the [LFW faces dataset](http://vis-www.cs.umass.edu/lfw/) in [this](http://giorasimchoni.com/2017/12/04/2017-12-04-snap-fu/) blog post.
Or get the gist with `train_ssd7_faces.R` with the data zipped at `lfw_faces_tagged.zip`.
You should get quite good results, e.g.:
![](val_02.png)
As said this is under construction though working at large. Only lightly tested on my Windows machine in which for example Python, Keras, Tensorflow are already installed. Other packages needed:
`tidyverse`, `stringr`, `reticulate`, `magick`
See `sessionInfo()`:
```{r sessionInfo, eval = FALSE}
sessionInfo()
```
```{r sessionInfo-Cache, echo = FALSE}
writeLines(readLines("~/sessionInfo_04122017.txt"))
```