0
0

More than 3 years have passed since last update.

Google ColaboratoryでTensorFlow1.14, Keras2.2.4を動かすときの注意点

Posted at

2021/4/7現在、Google Colaboratoryには最初からTensorFlow 2系がインストールされている。

これはTensorFlowがGPUとCPU版で分かれていたのが統合した新しいバージョンであり、TensorFlow 1.14を動作させるにはアンインストールする必要がある。

!pip uninstall -y tensorflow
!pip install tensorflow-gpu==1.14.0
!pip install tensorflow==1.14
!pip install keras==2.2.4
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0