Отключить GPU в ноутбуке Jupyter в Tensorflow

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