MansMeg / IntroML

Introductory course in Machine Learning for master students in Statistics at Uppsala University
17 stars 11 forks source link

Issues with Jupyter Notebook with R and Tensorow #8

Open quinoba opened 7 months ago

quinoba commented 7 months ago

Hello,

I just wanted to let you know that the Jupyter Notebook with R and Tensorow available here: https://github.com/MansMeg/IntroML/blob/master/additional_material/colab_nb/RandTensorFlow.ipynb

doesn't seem to work. The issue is related with the fact that we don't need to run any of the lines related to the installation of tensorflow, because TensorFlow is already installed in the colab environemnt. It seems that when you only run library(keras) it works. Therefore no need to run the following lines of code, since running them generate errors:

install.packages('reticulate')
reticulate::install_miniconda()

install.packages('tensorflow')

library('tensorflow')
install_tensorflow()
MansMeg commented 7 months ago

Thanks!

MansMeg commented 7 months ago

If you can, feel free to do a PR.