Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
country | people | 2018 Population (thousands) | rate on 1000 people | |
---|---|---|---|---|
Singapore | 186 | 5791.901 | 0.032114 | |
Ireland | 101 | 4803.748 | 0.021025 | |
Israel | 173 | 8452.841 | 0.020466 | |
Switzerland | 164 | 8544.034 | 0.019195 | |
Denmark | 106 | 5754.356 | 0.018421 | |
Canada | 604 | 36953.765 | 0.016345 | |
New Zealand | 77 | 4749.598 | 0.016212 | |
Netherlands | 270 | 17084.459 | 0.015804 | |
Sweden | 155 | 9982.709 | 0.015527 |
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
import numpy as np | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
import seaborn as sns | |
%matplotlib inline | |
from nltk.tokenize import TweetTokenizer | |
import datetime | |
import lightgbm as lgb | |
from scipy import stats |
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
import os | |
import hydra | |
import pytorch_lightning as pl | |
from omegaconf import DictConfig | |
from pytorch_lightning.loggers import CometLogger, TensorBoardLogger | |
from src.lightning_classes.lightning_nbeats import LitM5NBeats | |
from src.utils.utils import set_seed |
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 fastai import * |
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
import itertools | |
import random | |
from typing import List, Tuple | |
import numpy as np | |
from interfaces.TaggingOperation import TaggingOperation | |
from tasks.TaskTypes import TaskType | |