Last active
October 11, 2023 14:56
-
-
Save pzelasko/6ce9963332bba63d36388174b0f450b4 to your computer and use it in GitHub Desktop.
Jupyter sanity
This file contains 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
%load_ext autoreload | |
%autoreload 2 | |
# conda install pandas numpy matplotlib jupyterlab | |
# pip install lhotse torch | |
from pathlib import Path | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import torch | |
import pandas as pd | |
from tqdm.auto import tqdm | |
import lhotse | |
from lhotse import * |
This file contains 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
%load_ext autoreload | |
%autoreload 2 | |
%matplotlib inline | |
# conda install pandas numpy matplotlib jupyter | |
# pip install lhotse torch | |
from IPython.core.display import display, HTML | |
display(HTML("<style>.container { width:100% !important; }</style>")) | |
from pathlib import Path | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import torch | |
import pandas as pd | |
from tqdm.auto import tqdm | |
import lhotse | |
from lhotse import * |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment