Pages

Google Ads

Wednesday, July 26, 2017

Are you thinking about Cyber security?

Below there are some public videos about Cyber Security that we should watch:






Saturday, July 01, 2017

Installing Tensorflow in R

Hi Folks,

TensorFlow™ is an open source software library for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) communicated between them. The flexible architecture allows you to deploy computation to one or more CPUs or GPUs in a desktop, server, or mobile device with a single API. TensorFlow was originally developed by researchers and engineers working on the Google Brain Team within Google’s Machine Intelligence research organization for the purposes of conducting machine learning and deep neural networks research, but the system is general enough to be applicable in a wide variety of other domains as well.

How to install Tensorflow in R

# Need Yaml to install Tensorflow in R
install.packages("yaml")

# Install Tensorflow in R

install.packages("devtools")
devtools::install_github("rstudio/tensorflow")

library(tensorflow)
install_tensorflow()

How to test it

sess = tf$Session()
hello <- constant="" div="" ello="" tensorflow="" tf="">
sess$run(hello)

Reference: