All Projects → savankoradiya → Google-Colab-Tutorial

savankoradiya / Google-Colab-Tutorial

Licence: other
Google Colab Tutorial

Projects that are alternatives of or similar to Google-Colab-Tutorial

Tensorflow2-ObjectDetectionAPI-Colab-Hands-On
Tensorflow2 Object Detection APIのハンズオン用資料です(Hands-on documentation for the Tensorflow2 Object Detection API)
Stars: ✭ 33 (-45.9%)
Mutual labels:  colab, colab-tutorial
ForecastGA
A Python tool to forecast Google Analytics data using several popular time series models.
Stars: ✭ 32 (-47.54%)
Mutual labels:  colab
Torrent-To-Google-Drive-Downloader
Simple notebook to stream torrent files to Google Drive using Google Colab and python3.
Stars: ✭ 256 (+319.67%)
Mutual labels:  colab
MiXLab
MiXLab is a mix of multiple amazing Colab Notebooks found on the internet such as rcloneLab, RLabClone, Torrent to Google Drive Downloader and some more.
Stars: ✭ 143 (+134.43%)
Mutual labels:  colab
Numerical-Analysis-Python
Python notebooks for Numerical Analysis
Stars: ✭ 82 (+34.43%)
Mutual labels:  colab
stylegan2
StyleGAN2 - Official TensorFlow Implementation with practical improvements
Stars: ✭ 121 (+98.36%)
Mutual labels:  colab
Google Colab tutorial
Google Colab tutorial with simple network training and Tensorboard.
Stars: ✭ 14 (-77.05%)
Mutual labels:  google-colab-tutorial
MVIMP
Mixed Video and Image Manipulation Program
Stars: ✭ 56 (-8.2%)
Mutual labels:  colab
Handy
Convert videos with HandBrake online in Google Colab. Mount Cloud drives with rclone in colab. Burn/Hardcode subtitles. Extract/mute audio from video. Get email notification when tasks finish running.
Stars: ✭ 35 (-42.62%)
Mutual labels:  colab
MIPT-Opt
A course on Optimization Methods
Stars: ✭ 128 (+109.84%)
Mutual labels:  colab
data-science-learning
📊 All of courses, assignments, exercises, mini-projects and books that I've done so far in the process of learning by myself Machine Learning and Data Science.
Stars: ✭ 32 (-47.54%)
Mutual labels:  colab
edge-computer-vision
Edge Computer Vision Course
Stars: ✭ 41 (-32.79%)
Mutual labels:  colab
picatrix
Picatrix is a library designed to help security analysts in a notebook environment, such as colab or jupyter.
Stars: ✭ 35 (-42.62%)
Mutual labels:  colab
AnimeGANv3
Use AnimeGANv3 to make your own animation works, including turning photos or videos into anime.
Stars: ✭ 878 (+1339.34%)
Mutual labels:  colab
colab-badge-action
GitHub Action that generates "Open In Colab" Badges for you
Stars: ✭ 15 (-75.41%)
Mutual labels:  colab
MineColab
Run Minecraft Server on Google Colab.
Stars: ✭ 135 (+121.31%)
Mutual labels:  colab
swift-colab
Swift kernel for Google Colaboratory
Stars: ✭ 50 (-18.03%)
Mutual labels:  colab
fastai-visual-guide
Notebooks for Fastai Viusal Guide
Stars: ✭ 25 (-59.02%)
Mutual labels:  colab
camera-calibration
This repository include implementation of calibrating intrinsic and extrinsic camera parameter for distance calculation
Stars: ✭ 19 (-68.85%)
Mutual labels:  opencv-cpp
carla-colab
How to run CARLA simulator on colab
Stars: ✭ 81 (+32.79%)
Mutual labels:  google-colab-tutorial

Google Colab Tutorial

Colab is a Google’s free cloud service which will let you run your deep learning or machine learning models in cloud.

Creating New Colab Notebook

  • Open your Google Drive
  • Create a new notebook via Right click > More > Colaboratory

GPU Setting

Edit > Notebook settings or Runtime>Change runtime type and select GPU as Hardware accelerator

RAM Info

!cat /proc/meminfo

CPU Info

!cat /proc/cpuinfo

Install Libraries

!pip install or !apt-get install

!pip3 install tensorflow==1.8
!pip3 install keras
!pip3 install torch torchvision
!apt-get install python-numpy python-scipy

Install OpenCV for c/c++

!apt-get install -qq gcc-5 g++-5 -y
!ln -s /usr/bin/gcc-5 
!ln -s /usr/bin/g++-5 

!sudo apt-get update
!sudo apt-get upgrade

#Install Dependencies
!sudo apt-get install -y build-essential 
!sudo apt-get install -y cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev
#The following command is needed to process images:
!sudo apt-get install -y python-dev python-numpy libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libjasper-dev libdc1394-22-dev
#To process videos:
!sudo apt-get install -y libavcodec-dev libavformat-dev libswscale-dev libv4l-dev
!sudo apt-get install -y libxvidcore-dev libx264-dev
#For GUI:
!sudo apt-get install -y libgtk-3-dev
#For optimization:
!sudo apt-get install -y libatlas-base-dev gfortran pylint
!wget https://github.com/opencv/opencv/archive/3.4.0.zip -O opencv-3.4.0.zip
!sudo apt-get install unzip
!unzip opencv-3.4.0.zip
%cd opencv-3.4.0
!mkdir build
%cd build
!cmake -D WITH_TBB=ON -D WITH_OPENMP=ON -D WITH_IPP=ON -D CMAKE_BUILD_TYPE=RELEASE -D BUILD_EXAMPLES=OFF -D WITH_NVCUVID=ON -D WITH_CUDA=OFF -D BUILD_DOCS=OFF -D BUILD_PERF_TESTS=OFF -D BUILD_TESTS=OFF -D WITH_CSTRIPES=ON -D WITH_OPENCL=ON CMAKE_INSTALL_PREFIX=/usr/local/ ..
!make -j`nproc`
!sudo make install

Cloning Github Repo to Google Colab

!git clone https://github.com/ildoonet/tf-pose-estimation.git

Mount your Google Drive

from google.colab import drive
drive.mount('/content/drive/')

Check your Folder Data

!ls Drive/test

Upload code from your system

from google.colab import files
uploaded = files.upload()

Make zip file of your Data

from google.colab import files
import zipfile
import sys
foldername = 'your folder or filename'
zipfile.ZipFile('Drive/'+foldername + '.zip', 'w', zipfile.ZIP_DEFLATED)

Downloading the data from the colab

from google.colab import files
files.download('Drive/test.zip')
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].