Skip to content

Instantly share code, notes, and snippets.

View abhisheksgumadi's full-sized avatar

Abhishek Shivkumar abhisheksgumadi

  • London, United Kingdom
  • 06:00 (UTC -12:00)
View GitHub Profile
@abhisheksgumadi
abhisheksgumadi / gist:e23e3fc17bddfa3e04bc19cd13c295ed
Created March 10, 2020 12:05
Mount G-Drive in Google Colab
from google.colab import drive
drive.mount('/content/gdrive')
@abhisheksgumadi
abhisheksgumadi / gist:b45e400332857e4d1f61719c537406d6
Last active March 10, 2020 12:02
Comvert Matlab .mat files to Python format
import scipy.io
import numpy as np
data = scipy.io.loadmat("imagelabels.mat")