When: 19th October 2018, 14:00-16:00
The following packages need to be install for this work along session:
install.packages("devtools")
install.packages("neuralnet")
install.packages("GGally")
install.packages("tidyverse")
install.packages("car")
install.packages("curl")
install.packages("tensorflow")
For using tensorflow
, you also need an additional step to initialize it:
library(tensorflow)
install_tensorflow(method = "auto") # if not installed before
sess = tf$Session()
hello <- tf$constant("Hello, Tensorflow!")
sess$run(hello)
The following python packages will be used for this work along session:
numpy
pandas
matplotlib
scikit-learn
tensorflow
See jupyter notebook with neuralnet example.
See jupyter notebook with tensorflow in python.