Translations:Keras/6/fr: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
(Created page with "#Installez TensorFlow suivant ces directives. #Follow the instructions from the parent section. #Chargez les modules nécessaires. #:{{Comman...")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
#Installez TensorFlow suivant [[Tensorflow/fr#Le_paquet_R | ces directives]].
#Installez TensorFlow [[TensorFlow/fr#Le_paquet_R | suivant ces directives]].
#Follow the instructions from the parent section.
#Suivez les directives de la section parent.
#Chargez les modules nécessaires.   
#Chargez les modules nécessaires.   
#:{{Command2|module load gcc r/3.5.0}}
#:{{Command2|module load gcc/7.3.0 r/3.5.2}}
# Lancez R.
# Lancez R.
#:{{Command2|R}}
#:{{Command2|R}}
#Avec <code>desvtools</code>, installez Keras dans R.  
#Avec <code>devtools</code>, installez Keras dans R.  
#:<syntaxhighlight lang='r'>
#:<syntaxhighlight lang='r'>
devtools::install_github('rstudio/keras')
devtools::install_github('rstudio/keras')
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 17:42, 27 June 2023

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Keras)
#Install TensorFlow for R by following [[Tensorflow#R_package | these instructions]].
#Follow the instructions from the parent section.
#Load the required modules. 
#:{{Command2|module load gcc/7.3.0 r/3.5.2}}
# Launch R.
#:{{Command2|R}}
#In R, install the Keras package with <code>devtools</code>. 
#:<syntaxhighlight lang='r'>
devtools::install_github('rstudio/keras')
</syntaxhighlight>
  1. Installez TensorFlow suivant ces directives.
  2. Suivez les directives de la section parent.
  3. Chargez les modules nécessaires.
    [name@server ~]$ module load gcc/7.3.0 r/3.5.2
    
  1. Lancez R.
    [name@server ~]$ R
    
  1. Avec devtools, installez Keras dans R.
    devtools::install_github('rstudio/keras')