Import data from Google Drive and Github into Google Colab | Upload External data into Colab

Deepan TechSpace
Deepan TechSpace
5.7 هزار بار بازدید - 4 سال پیش - #colab
#colab #googlecolab #github
Upload your data into google colab from Google drive and Github and how to access inside code for image, csv and other directories.

Code
import cv2
from google.colab.patches import cv2_imshow
drive_data = cv2.imread("/content/drive/MyDrive/ms.jpg")
cv2_imshow(drive_data)
!git clone https://github.com/deepanrajm/machine...
from imutils import paths
image_paths = "machine_learning/OpenCv/face_detection/images/"
for path in sorted(list(paths.list_images(image_paths))):
 frame = cv2.imread(path)
 cv2_imshow(frame)
import pandas as pd
data = pd.read_csv('machine_learning/Machine_learning/2_IRIS/iris.csv')
data.head()
data_personal = cv2.imread("banner.png")
cv2_imshow(data_personal)
4 سال پیش در تاریخ 1399/10/20 منتشر شده است.
5,793 بـار بازدید شده
... بیشتر