An open API service indexing awesome lists of open source software.

https://github.com/r-tensorflow/alexnet

Keras port for AlexNet in R
https://github.com/r-tensorflow/alexnet

Last synced: 28 days ago
JSON representation

Keras port for AlexNet in R

Awesome Lists containing this project

README

          

---
title: "alexnet: R Port for AlexNet Model"
output:
github_document:
fig_width: 9
fig_height: 5
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(eval = FALSE)
```

## Training

We recommend using the [mlverse/docker](https://github.com/mlverse/docker) image which you can retrieve and run as follows:

```{bash}
docker pull mlverse/mlverse-base:version-0.2.0
docker run --gpus all -p 8787:8787 -d mlverse/mlverse-base:version-0.2.0
```

You can then connect to RStudio Server under port https://public-address:8787, followed by installing and runninng AlexNet:

```{r}
remotes::install_github("r-tensorflow/alexnet")

alexnet_train::alexnet_train()
```