More Google Colabs
Google Colabs. Adding turicreate.
import requests
import pandas as pd
import numpy as np
from datetime import datetime
import warnings
warnings.filterwarnings("ignore")
try:
import seaborn as sns
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
sns.set(style="white", color_codes=True)
from matplotlib_venn import venn2
import keras
import pydot
import libarchive
import torch
import turicreate
except:
print("Will try to install software")
# Lines below .... Only need to be run once at the top of the notebook.
!pip install -q matplotlib-venn
!pip install -q keras
# # https://pypi.python.org/pypi/pydot
!apt-get -qq install -y graphviz && pip install -q pydot
!apt-get -qq install -y libarchive-dev && pip install -q -U libarchive
!pip install -U -q PyDrive
!pip install --upgrade -q gspread
!pip3 install http://download.pytorch.org/whl/cpu/torch-0.4.0-cp36-cp36m-linux_x86_64.whl
!pip3 install torchvision
!pip3 install -U turicreate
import seaborn as sns
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
sns.set(style="white", color_codes=True)
from matplotlib_venn import venn2
import keras
import pydot
import libarchive
import turicreate as tc