# tensorflow **Repository Path**: mirrors_rstudio/tensorflow ## Basic Information - **Project Name**: tensorflow - **Description**: TensorFlow for R - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-05 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## TensorFlow for R [![R build status](https://github.com/rstudio/tensorflow/workflows/R-CMD-check/badge.svg)](https://github.com/rstudio/tensorflow/actions?workflow=R-CMD-check) [![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/tensorflow)](https://cran.r-project.org/package=tensorflow) [TensorFlowâ„¢](https://www.tensorflow.org) 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](https://www.tensorflow.org/api_docs/python/tf/all_symbols) 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: ```r devtools::install_github("rstudio/tensorflow") ``` Then, call `py_require_tensorflow()` at the start of each R session, before using TensorFlow: ```r library(tensorflow) py_require_tensorflow() ``` You can confirm that TensorFlow is available with: ```r hello <- tf$constant("Hello") print(hello) ``` This is all you need for the default setup. Reticulate will take care of the details: it will choose or create a suitable Python environment, install TensorFlow and its Python dependencies, and make that environment available to the tensorflow R package. You do not need to install Python packages or configure a Python environment manually. In most cases, you no longer need to call `install_tensorflow()`. If you want to create a persistent virtual environment explicitly, use: ```r install_tensorflow() ``` See the [article on installation](https://tensorflow.rstudio.com/install/) 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: See the TensorFlow API reference for details on all of the modules, classes, and functions within the API: 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](https://posit.co/download/rstudio-desktop/) of RStudio.