Nonaktifkan GPU di Jupyter Notebook di TensorFlow

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