...
Full Bio
Use Machine Learning To Teach Robots to Navigate by CMU & Facebook Artificial Intelligence Research Team
219 days ago
Top 10 Artificial Intelligence & Data Science Master's Courses for 2020
220 days ago
Is Data Science Dead? Long Live Business Science
248 days ago
New Way to write code is about to Change: Join the Revolution
249 days ago
Google Go Language Future, Programming Language Programmer Will Get Best Paid Jobs
570 days ago
Top 10 Best Countries for Software Engineers to Work & High in-Demand Programming Languages
722616 views
Highest Paying Programming Language, Skills: Here Are The Top Earners
669045 views
Which Programming Languages in Demand & Earn The Highest Salaries?
474141 views
Top 5 Programming Languages Mostly Used By Facebook Programmers To Developed All Product
459465 views
World's Most Popular 5 Hardest Programming Language
389730 views
How I Get Trained Machine Learning Models Online For Free - GPU, TPU Enabled
- Google Colab
- Kaggel Kernel
- Jupyter Notebook on GCP
- Amazon SageMaker
- Azure Notebooks

import os
import pprint
import tensorflow as tf
if â??COLAB_TPU_ADDRâ?? not in os.environ:
print(â??ERROR: Not connected to a TPU runtime; please see the first cell in this notebook for instructions!â??)
else:
tpu_address = â??grpc://â?? + os.environ[â??COLAB_TPU_ADDRâ??]
print (â??TPU address isâ??, tpu_address)
with tf.Session(tpu_address) as session:
devices = session.list_devices()
print(â??TPU devices:â??)
pprint.pprint(devices)
- One can upload files from the local machine.
- Upload files from google drive
- One can also directly upload datasets from kaggle
uploaded = files.upload()
!pip install -U -q PyDrive
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
from google.colab import auth
from oauth2client.client import GoogleCredentials
# 1. Authenticate and create the PyDrive client.
auth.authenticate_user()
gauth = GoogleAuth()
gauth.credentials = GoogleCredentials.get_application_default()
drive = GoogleDrive(gauth)
# PyDrive reference:
# https://gsuitedevs.github.io/PyDrive/docs/build/html/index.html
# 2. Create & upload a file text file.
uploaded = drive.CreateFile({'title': 'Sample upload.txt'})
uploaded.SetContentString('Sample upload file content')
uploaded.Upload()
print('Uploaded file with ID {}'.format(uploaded.get('id')))
# 3. Load a file by ID and print its contents.
downloaded = drive.CreateFile({'id': uploaded.get('id')})
print('Downloaded content "{}"'.format(downloaded.GetContentString()))

!pip install kaggle
!chmod 600 ~/.kaggle/kaggle.json

- 4 CPU cores
- 17 Gigabytes of RAM
- 6 hours execution time
- 5 Gigabytes of auto-saved disk space (/kaggle/working)
- 16 Gigabytes of temporary, scratchpad disk space (outside /kaggle/working)
- 2 CPU cores
- 14 Gigabytes of RAM

../input/

- Just enter the library name, kaggle will download it for you.

- Enter the username/repo name
