work along session on deep learning


Minutes of the studyGroup@UiO work along session

When: 19th October 2018, 14:00-16:00

Setup

Setup for R

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)

Setup for python 3

The following python packages will be used for this work along session:

numpy
pandas
matplotlib
scikit-learn
tensorflow

neuralnet with R

See jupyter notebook with neuralnet example.

Tensorflow with python

See jupyter notebook with tensorflow in python.

Other materials