Wyłącz GPU w notebookie Jupyter w Tensorflow

import os
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"
import tensorflow as tf
Novid19