how do i import Image from google drive to google colab
You can using OpenCV in colab by import cv2 as cv
, read image by img = cv.imread('/content/gdrive/MyDrive/colab/6-step-ml-framework.png')
, convert image to numpy array using img = np.float32(img)