Skip to content

Commit

Permalink
Added math/h5py imports
Browse files Browse the repository at this point in the history
  • Loading branch information
AnanthVivekanand committed Oct 23, 2020
1 parent faca4f7 commit f29f1ea
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions main.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,23 @@
"cells": [
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/usr/local/lib/python3.7/site-packages/librosa/util/decorators.py:9: NumbaDeprecationWarning: \u001b[1mAn import was requested from a module that has moved location.\n",
"Import requested from: 'numba.decorators', please update to use 'numba.core.decorators' or pin to Numba version 0.48.0. This alias will not be present in Numba version 0.50.0.\u001b[0m\n",
" from numba.decorators import jit as optional_jit\n",
"/usr/local/lib/python3.7/site-packages/librosa/util/decorators.py:9: NumbaDeprecationWarning: \u001b[1mAn import was requested from a module that has moved location.\n",
"Import of 'jit' requested from: 'numba.decorators', please update to use 'numba.core.decorators' or pin to Numba version 0.48.0. This alias will not be present in Numba version 0.50.0.\u001b[0m\n",
" from numba.decorators import jit as optional_jit\n",
"Using TensorFlow backend.\n"
]
}
],
"source": [
"import pandas as pd\n",
"import numpy as np\n",
Expand All @@ -13,7 +27,9 @@
"import librosa.display\n",
"import matplotlib.pyplot as plt\n",
"from sklearn.preprocessing import LabelEncoder\n",
"from keras.utils import to_categorical"
"from keras.utils import to_categorical\n",
"import h5py\n",
"import math"
]
},
{
Expand Down

0 comments on commit f29f1ea

Please sign in to comment.