Skip to content

rstudio/tensorflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

94bccf6 · Apr 10, 2025
Feb 24, 2025
Mar 31, 2025
Feb 18, 2020
Feb 24, 2025
Sep 18, 2017
Feb 24, 2025
Aug 15, 2023
Aug 15, 2023
Feb 24, 2025
Sep 29, 2016
Mar 26, 2024
Feb 24, 2025
Dec 19, 2022
Apr 15, 2024
Jan 24, 2025

Repository files navigation

TensorFlow for R

R build status CRAN_Status_Badge

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.

The TensorFlow API is composed of a set of Python modules that enable constructing and executing TensorFlow graphs. The tensorflow package provides access to the complete TensorFlow API from within R.

Installation

To get started, install the tensorflow R package from GitHub as follows:

devtools::install_github("rstudio/tensorflow")

Then, use the install_tensorflow() function to install TensorFlow:

library(tensorflow)
install_tensorflow()

You can confirm that the installation succeeded with:

hello <- tf$constant("Hello")
print(hello)

This will provide you with a default installation of TensorFlow suitable for getting started with the tensorflow R package. See the article on installation to learn about more advanced options, including installing a version of TensorFlow that takes advantage of Nvidia GPUs if you have the correct CUDA libraries installed.

Documentation

See the package website for additional details on using the TensorFlow API from R: https://tensorflow.rstudio.com

See the TensorFlow API reference for details on all of the modules, classes, and functions within the API: https://www.tensorflow.org/api_docs/python/tf/all_symbols

The tensorflow package provides code completion and inline help for the TensorFlow API when running within the RStudio IDE. In order to take advantage of these features you should also install the Current Release of RStudio.