- Ubuntu 20.04
- CUDA 10.2
- Docker Latest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: all | |
vars: | |
ansible_connect_timeout: 300 | |
become: true | |
tasks: | |
- name: Update and upgrade apt packages | |
apt: | |
update_cache: yes | |
upgrade: yes |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from urllib.request import urlopen | |
import json, dateutil.parser | |
import matplotlib.pyplot as plt | |
plt.style.use('ggplot') | |
link = "https://raw.githubusercontent.com/tokyo-metropolitan-gov/covid19/development/data/data.json" | |
with urlopen(link) as f: | |
data = json.load(f) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM jupyter/datascience-notebook | |
RUN pip install --upgrade pip | |
RUN pip install jupyterlab | |
RUN jupyter serverextension enable --py jupyterlab |
Well, it doesn't quite calculate precision and recall, actually.