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
- Host: GitHub
- URL: https://github.com/r-tensorflow/alexnet
- Owner: r-tensorflow
- Created: 2020-05-12T22:58:09.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-15T02:44:54.000Z (almost 6 years ago)
- Last Synced: 2025-07-03T13:05:29.358Z (12 months ago)
- Language: R
- Size: 17.6 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
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()
```