일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Graph Tech
- TensorFlow
- 빅데이터
- Cypher
- 연합학습
- Python
- DeepLearning
- 분산 병렬 처리
- 그래프 질의언어
- 딥러닝
- GraphX
- Neo4j
- GSQL
- BigData
- graph
- Federated Learning
- SparkML
- 그래프 데이터베이스
- SQL
- 인공지능
- r
- graph database
- spark
- TigerGraph
- 그래프 에코시스템
- Graph Ecosystem
- RStudio
- GDB
- RDD
- 그래프
- Today
- Total
Hee'World
tensorflow in r 설치 본문
TensorFlow
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.
Installing TensorFlow
Prior to using the tensorflow R package you need to install a version of TensorFlow on your system. Below we describe how to install TensorFlow as well the various options available for customizing your installation.
Note that this article principally covers the use of the R install_tensorflow()
function, which provides an easy to use wrapper for the various steps required to install TensorFlow.
You can also choose to install TensorFlow manually (as described at https://www.tensorflow.org/install/). In that case the Custom Installation section covers how to arrange for the tensorflow R package to use the version you installed.
Installing TensorFlow
Prior to using the tensorflow R package you need to install a version of TensorFlow on your system. Below we describe how to install TensorFlow as well the various options available for customizing your installation.
Note that this article principally covers the use of the R install_tensorflow()
function, which provides an easy to use wrapper for the various steps required to install TensorFlow.
You can also choose to install TensorFlow manually (as described at https://www.tensorflow.org/install/). In that case the Custom Installation section covers how to arrange for the tensorflow R package to use the version you installed.
- 설치환경
* RAM 16G
* HDD 500G
* Windows 7
- install.packages("tensorflow") 명령어를 이용하여 CRAN에서 tensorflow 설치 가능
<RStudio에서 tensorflow 설치>
Using TensorFlow with R
The TensorFlow API is composed of a set of Python modules that enable con
structing and executing TensorFlow graphs. The tensorflow package provides access to the complete TensorFlow API from within R. Here’s a simple example of making up some data in two dimensions and then fitting a line to it:
- https://tensorflow.rstudio.com/installation.html
'Programming > R' 카테고리의 다른 글
Tensorflow_R_MNIST 예제 (Keras) (0) | 2020.04.13 |
---|---|
기상데이터를 이용한 Shiny App구현 (0) | 2020.03.23 |
Sparklyr 설치 (0) | 2017.07.19 |
kNN 알고리즘 (0) | 2015.05.03 |
머신 러닝의 기본단계 (0) | 2015.05.03 |