knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

This vignette document is the official description of the super advanced package runs a basic multilayer neural network

To use the package you will need:


Detailed usage

# Estimate parameters
model_dim<-c(first_layer,,l2,l3,...,1)
parameters<-L_layer_model(X, Y, layers_dims=model_dim, learning_rate = 0.0075, num_iterations = 3000, print_cost=F)

predict_nn_L_layer(X_new, parameters)

Package also contains data 'X' and 'Y' that can be accessed as:

data(package="mlbasic1")


kostya75/mlbasic1 documentation built on June 21, 2020, 12:56 a.m.