- Deep Learning with R for Beginners
- Mark Hodnett Joshua F. Wiley Yuxi (Hayden) Liu Pablo Maldonado
- 231字
- 2021-06-24 14:30:39
Neural networks in R
We will build several neural networks in this section. First, we will use the neuralnet package to create a neural network model that we can visualize. We will also use the nnet and RSNNS (Bergmeir, C., and Benítez, J. M. (2012)) packages. These are standard R packages and can be installed by the install.packages command or from the packages pane in RStudio. Although it is possible to use the nnet package directly, we are going to use it through the caret package, which is short for Classification and Regression Training. The caret package provides a standardized interface to work with many machine learning (ML) models in R, and also has some useful features for validation and performance assessment that we will use in this chapter and the next.
For our first examples of building neural networks, we will use the MNIST dataset, which is a classic classification problem: recognizing handwritten digits based on pictures. The data can be downloaded from the Apache MXNet site (https://apache-mxnet.s3-accelerate.dualstack.amazonaws.com/R/data/mnist_csv.zip). It is in the CSV format, where each column of the dataset, or feature, represents a pixel from the image. Each image has 784 pixels (28 x 28) and the pixels are in grayscale and range from 0 to 255. The first column contains the digit label, and the rest are pixel values, to be used for classification.
- SQL Server 2008數(shù)據(jù)庫應用技術(shù)(第二版)
- Modern Programming: Object Oriented Programming and Best Practices
- R數(shù)據(jù)科學實戰(zhàn):工具詳解與案例分析(鮮讀版)
- 區(qū)塊鏈通俗讀本
- 數(shù)據(jù)庫原理與應用(Oracle版)
- 數(shù)據(jù)挖掘原理與SPSS Clementine應用寶典
- 網(wǎng)站數(shù)據(jù)庫技術(shù)
- 高維數(shù)據(jù)分析預處理技術(shù)
- Solaris操作系統(tǒng)原理實驗教程
- 數(shù)據(jù)庫技術(shù)及應用
- 云計算寶典:技術(shù)與實踐
- 商業(yè)智能工具應用與數(shù)據(jù)可視化
- 數(shù)據(jù)分析思維:產(chǎn)品經(jīng)理的成長筆記
- Cognitive Computing with IBM Watson
- 深入理解Flink:實時大數(shù)據(jù)處理實踐