Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jcrodriguez1989/kerasmodelcreator
ShinyApp: Visually design Keras models for R language
https://github.com/jcrodriguez1989/kerasmodelcreator
deep-learning designer gui keras model r shiny tensorflow
Last synced: 3 months ago
JSON representation
ShinyApp: Visually design Keras models for R language
- Host: GitHub
- URL: https://github.com/jcrodriguez1989/kerasmodelcreator
- Owner: jcrodriguez1989
- Created: 2019-02-06T14:49:28.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-22T13:41:41.000Z (almost 6 years ago)
- Last Synced: 2024-08-03T22:04:26.954Z (5 months ago)
- Topics: deep-learning, designer, gui, keras, model, r, shiny, tensorflow
- Language: R
- Homepage:
- Size: 44.9 KB
- Stars: 5
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
title: "Keras Model Creator"
output: github_document
---Visually design [Keras models for R language](https://keras.rstudio.com/).
The idea of Keras Model Creator is based on [Deep Learning Studio](
https://deepcognition.ai/features/deep-learning-studio/).Take a look at the [guided tour!](
https://jcrodriguez.shinyapps.io/KerasModelCreator/?help)## Features
* Add layers and connections manually.
* Set compile options.
* Get automatically generated code.
## Installation
Clone KerasModelCreator repository, i.e., from a bash console:
```{bash eval=FALSE}
git clone https://github.com/jcrodriguez1989/KerasModelCreator.git;
```Install package dependencies, i.e., from R console:
```{r eval=FALSE}
install.packages(c(
"jsonlite",
"keras", # not a dependency, but come on!
"shiny",
"shinythemes",
"visNetwork"
));
```## Usage
From an R console type:
```{r eval=FALSE}
# replace by the PATH where KerasModelCreator was cloned
setwd("KERASMODELCREATOR_PATH");library("shiny");
# will open the app in a web browser
runApp();
```Or visit the [example app](https://jcrodriguez.shinyapps.io/KerasModelCreator/)
at shinyapps.ioAnd take the [guided tour](
https://jcrodriguez.shinyapps.io/KerasModelCreator/?help).## Limitations
* Few network layers already developed.