print model r value as loading it

This commit is contained in:
erogol 2020-10-07 13:34:21 +02:00
parent 48a40c4730
commit e1eab1ce4b
4 changed files with 415 additions and 335 deletions

View File

@ -20,6 +20,7 @@ def load_checkpoint(model, checkpoint_path, amp=None, use_cuda=False):
# set model stepsize # set model stepsize
if hasattr(model.decoder, 'r'): if hasattr(model.decoder, 'r'):
model.decoder.set_r(state['r']) model.decoder.set_r(state['r'])
print(" > Model r: ", state['r'])
return model, state return model, state

View File

@ -1,24 +1,11 @@
{ {
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "DDC-TTS_and_MultiBand-MelGAN_TF_Example.ipynb",
"provenance": [],
"collapsed_sections": [],
"toc_visible": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
}
},
"cells": [ "cells": [
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": { "metadata": {
"id": "6LWsNd3_M3MP", "Collapsed": "false",
"colab_type": "text" "colab_type": "text",
"id": "6LWsNd3_M3MP"
}, },
"source": [ "source": [
"# Mozilla TTS on CPU Real-Time Speech Synthesis with Tensorflow" "# Mozilla TTS on CPU Real-Time Speech Synthesis with Tensorflow"
@ -27,8 +14,9 @@
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": { "metadata": {
"id": "FAqrSIWgLyP0", "Collapsed": "false",
"colab_type": "text" "colab_type": "text",
"id": "FAqrSIWgLyP0"
}, },
"source": [ "source": [
"**These models are converted from released [PyTorch models](https://colab.research.google.com/drive/1u_16ZzHjKYFn1HNVuA4Qf_i2MMFB9olY?usp=sharing) using our TF utilities provided in Mozilla TTS.**\n", "**These models are converted from released [PyTorch models](https://colab.research.google.com/drive/1u_16ZzHjKYFn1HNVuA4Qf_i2MMFB9olY?usp=sharing) using our TF utilities provided in Mozilla TTS.**\n",
@ -48,8 +36,9 @@
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": { "metadata": {
"id": "Ku-dA4DKoeXk", "Collapsed": "false",
"colab_type": "text" "colab_type": "text",
"id": "Ku-dA4DKoeXk"
}, },
"source": [ "source": [
"### Download Models" "### Download Models"
@ -57,48 +46,51 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "jGIgnWhGsxU1", "Collapsed": "false",
"colab_type": "code",
"colab": { "colab": {
"base_uri": "https://localhost:8080/", "base_uri": "https://localhost:8080/",
"height": 162 "height": 162
}, },
"colab_type": "code",
"id": "jGIgnWhGsxU1",
"outputId": "08b0dddd-4edf-48c9-e8e5-a419b36a5c3d", "outputId": "08b0dddd-4edf-48c9-e8e5-a419b36a5c3d",
"tags": [] "tags": []
}, },
"outputs": [],
"source": [ "source": [
"!gdown --id 1p7OSEEW_Z7ORxNgfZwhMy7IiLE1s0aH7 -O data/tts_model.pkl\n", "!gdown --id 1p7OSEEW_Z7ORxNgfZwhMy7IiLE1s0aH7 -O data/tts_model.pkl\n",
"!gdown --id 18CQ6G6tBEOfvCHlPqP8EBI4xWbrr9dBc -O data/config.json" "!gdown --id 18CQ6G6tBEOfvCHlPqP8EBI4xWbrr9dBc -O data/config.json"
], ]
"execution_count": null,
"outputs": []
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "4dnpE0-kvTsu", "Collapsed": "false",
"colab_type": "code",
"colab": { "colab": {
"base_uri": "https://localhost:8080/", "base_uri": "https://localhost:8080/",
"height": 235 "height": 235
}, },
"colab_type": "code",
"id": "4dnpE0-kvTsu",
"outputId": "2fe836eb-c7e7-4f1e-9352-0142126bb19f", "outputId": "2fe836eb-c7e7-4f1e-9352-0142126bb19f",
"tags": [] "tags": []
}, },
"outputs": [],
"source": [ "source": [
"!gdown --id 1rHmj7CqD3Sfa716Y3ub_vpIBrQg_b1yF -O data/vocoder_model.pkl\n", "!gdown --id 1rHmj7CqD3Sfa716Y3ub_vpIBrQg_b1yF -O data/vocoder_model.pkl\n",
"!gdown --id 1Rd0R_nRCrbjEdpOwq6XwZAktvugiBvmu -O data/config_vocoder.json\n", "!gdown --id 1Rd0R_nRCrbjEdpOwq6XwZAktvugiBvmu -O data/config_vocoder.json\n",
"!gdown --id 11oY3Tv0kQtxK_JPgxrfesa99maVXHNxU -O data/scale_stats.npy" "!gdown --id 11oY3Tv0kQtxK_JPgxrfesa99maVXHNxU -O data/scale_stats.npy"
], ]
"execution_count": null,
"outputs": []
}, },
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": { "metadata": {
"id": "Zlgi8fPdpRF0", "Collapsed": "false",
"colab_type": "text" "colab_type": "text",
"id": "Zlgi8fPdpRF0"
}, },
"source": [ "source": [
"### Define TTS function" "### Define TTS function"
@ -106,11 +98,14 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "f-Yc42nQZG5A", "Collapsed": "false",
"colab": {},
"colab_type": "code", "colab_type": "code",
"colab": {} "id": "f-Yc42nQZG5A"
}, },
"outputs": [],
"source": [ "source": [
"def tts(model, text, CONFIG, p):\n", "def tts(model, text, CONFIG, p):\n",
" t_1 = time.time()\n", " t_1 = time.time()\n",
@ -127,15 +122,14 @@
" print(\" > Time per step: {}\".format(tps))\n", " print(\" > Time per step: {}\".format(tps))\n",
" IPython.display.display(IPython.display.Audio(waveform, rate=CONFIG.audio['sample_rate'])) \n", " IPython.display.display(IPython.display.Audio(waveform, rate=CONFIG.audio['sample_rate'])) \n",
" return alignment, mel_postnet_spec, stop_tokens, waveform" " return alignment, mel_postnet_spec, stop_tokens, waveform"
], ]
"execution_count": null,
"outputs": []
}, },
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": { "metadata": {
"id": "ZksegYQepkFg", "Collapsed": "false",
"colab_type": "text" "colab_type": "text",
"id": "ZksegYQepkFg"
}, },
"source": [ "source": [
"### Load Models" "### Load Models"
@ -143,11 +137,14 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "oVa0kOamprgj", "Collapsed": "false",
"colab": {},
"colab_type": "code", "colab_type": "code",
"colab": {} "id": "oVa0kOamprgj"
}, },
"outputs": [],
"source": [ "source": [
"import os\n", "import os\n",
"import torch\n", "import torch\n",
@ -160,88 +157,93 @@
"from TTS.tts.utils.text.symbols import symbols, phonemes\n", "from TTS.tts.utils.text.symbols import symbols, phonemes\n",
"from TTS.utils.audio import AudioProcessor\n", "from TTS.utils.audio import AudioProcessor\n",
"from TTS.tts.utils.synthesis import synthesis" "from TTS.tts.utils.synthesis import synthesis"
], ]
"execution_count": null,
"outputs": []
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "EY-sHVO8IFSH", "Collapsed": "false",
"colab": {},
"colab_type": "code", "colab_type": "code",
"colab": {} "id": "EY-sHVO8IFSH"
}, },
"outputs": [],
"source": [ "source": [
"# runtime settings\n", "# runtime settings\n",
"use_cuda = False" "use_cuda = False"
], ]
"execution_count": null,
"outputs": []
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "_1aIUp2FpxOQ", "Collapsed": "false",
"colab": {},
"colab_type": "code", "colab_type": "code",
"colab": {} "id": "_1aIUp2FpxOQ"
}, },
"outputs": [],
"source": [ "source": [
"# model paths\n", "# model paths\n",
"TTS_MODEL = \"data/tts_model.pkl\"\n", "TTS_MODEL = \"data/tts_model.pkl\"\n",
"TTS_CONFIG = \"data/config.json\"\n", "TTS_CONFIG = \"data/config.json\"\n",
"VOCODER_MODEL = \"data/vocoder_model.pkl\"\n", "VOCODER_MODEL = \"data/vocoder_model.pkl\"\n",
"VOCODER_CONFIG = \"data/config_vocoder.json\"" "VOCODER_CONFIG = \"data/config_vocoder.json\""
], ]
"execution_count": null,
"outputs": []
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "CpgmdBVQplbv", "Collapsed": "false",
"colab": {},
"colab_type": "code", "colab_type": "code",
"colab": {} "id": "CpgmdBVQplbv"
}, },
"outputs": [],
"source": [ "source": [
"# load configs\n", "# load configs\n",
"TTS_CONFIG = load_config(TTS_CONFIG)\n", "TTS_CONFIG = load_config(TTS_CONFIG)\n",
"VOCODER_CONFIG = load_config(VOCODER_CONFIG)" "VOCODER_CONFIG = load_config(VOCODER_CONFIG)"
], ]
"execution_count": null,
"outputs": []
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "zmrQxiozIUVE", "Collapsed": "false",
"colab_type": "code",
"colab": { "colab": {
"base_uri": "https://localhost:8080/", "base_uri": "https://localhost:8080/",
"height": 471 "height": 471
}, },
"colab_type": "code",
"id": "zmrQxiozIUVE",
"outputId": "fa71bd05-401f-4e5b-a6f7-60ae765966db", "outputId": "fa71bd05-401f-4e5b-a6f7-60ae765966db",
"tags": [] "tags": []
}, },
"outputs": [],
"source": [ "source": [
"# load the audio processor\n", "# load the audio processor\n",
"TTS_CONFIG.audio['stats_path'] = 'data/scale_stats.npy'\n", "TTS_CONFIG.audio['stats_path'] = 'data/scale_stats.npy'\n",
"ap = AudioProcessor(**TTS_CONFIG.audio) " "ap = AudioProcessor(**TTS_CONFIG.audio) "
], ]
"execution_count": null,
"outputs": []
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "8fLoI4ipqMeS", "Collapsed": "false",
"colab_type": "code",
"colab": { "colab": {
"base_uri": "https://localhost:8080/", "base_uri": "https://localhost:8080/",
"height": 72 "height": 72
}, },
"colab_type": "code",
"id": "8fLoI4ipqMeS",
"outputId": "595d990f-930d-4698-ee14-77796b5eed7d", "outputId": "595d990f-930d-4698-ee14-77796b5eed7d",
"tags": [] "tags": []
}, },
"outputs": [],
"source": [ "source": [
"# LOAD TTS MODEL\n", "# LOAD TTS MODEL\n",
"# multi speaker \n", "# multi speaker \n",
@ -254,21 +256,22 @@
"model.build_inference()\n", "model.build_inference()\n",
"model = load_checkpoint(model, TTS_MODEL)\n", "model = load_checkpoint(model, TTS_MODEL)\n",
"model.decoder.set_max_decoder_steps(1000)" "model.decoder.set_max_decoder_steps(1000)"
], ]
"execution_count": null,
"outputs": []
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "zKoq0GgzqzhQ", "Collapsed": "false",
"colab_type": "code",
"colab": { "colab": {
"base_uri": "https://localhost:8080/", "base_uri": "https://localhost:8080/",
"height": 489 "height": 489
}, },
"colab_type": "code",
"id": "zKoq0GgzqzhQ",
"outputId": "2cc3deae-144f-4465-da3b-98628d948506" "outputId": "2cc3deae-144f-4465-da3b-98628d948506"
}, },
"outputs": [],
"source": [ "source": [
"from TTS.vocoder.tf.utils.generic_utils import setup_generator\n", "from TTS.vocoder.tf.utils.generic_utils import setup_generator\n",
"from TTS.vocoder.tf.utils.io import load_checkpoint\n", "from TTS.vocoder.tf.utils.io import load_checkpoint\n",
@ -280,15 +283,14 @@
"vocoder_model.inference_padding = 0\n", "vocoder_model.inference_padding = 0\n",
"\n", "\n",
"ap_vocoder = AudioProcessor(**VOCODER_CONFIG['audio']) " "ap_vocoder = AudioProcessor(**VOCODER_CONFIG['audio']) "
], ]
"execution_count": null,
"outputs": []
}, },
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": { "metadata": {
"id": "Ws_YkPKsLgo-", "Collapsed": "false",
"colab_type": "text" "colab_type": "text",
"id": "Ws_YkPKsLgo-"
}, },
"source": [ "source": [
"## Run Inference" "## Run Inference"
@ -296,21 +298,49 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null,
"metadata": { "metadata": {
"id": "FuWxZ9Ey5Puj", "Collapsed": "false",
"colab_type": "code",
"colab": { "colab": {
"base_uri": "https://localhost:8080/", "base_uri": "https://localhost:8080/",
"height": 134 "height": 134
}, },
"colab_type": "code",
"id": "FuWxZ9Ey5Puj",
"outputId": "07ede6e5-06e6-4612-f687-7984d20e5254" "outputId": "07ede6e5-06e6-4612-f687-7984d20e5254"
}, },
"outputs": [],
"source": [ "source": [
"sentence = \"Bill got in the habit of asking himself “Is that thought true?” and if he wasnt absolutely certain it was, he just let it go.\"\n", "sentence = \"Bill got in the habit of asking himself “Is that thought true?” and if he wasnt absolutely certain it was, he just let it go.\"\n",
"align, spec, stop_tokens, wav = tts(model, sentence, TTS_CONFIG, ap)" "align, spec, stop_tokens, wav = tts(model, sentence, TTS_CONFIG, ap)"
],
"execution_count": null,
"outputs": []
}
] ]
} }
],
"metadata": {
"colab": {
"collapsed_sections": [],
"name": "DDC-TTS_and_MultiBand-MelGAN_TF_Example.ipynb",
"provenance": [],
"toc_visible": true
},
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.7"
}
},
"nbformat": 4,
"nbformat_minor": 4
}

View File

@ -181,7 +181,7 @@
"name": "python", "name": "python",
"nbconvert_exporter": "python", "nbconvert_exporter": "python",
"pygments_lexer": "ipython3", "pygments_lexer": "ipython3",
"version": "3.7.4" "version": "3.7.7"
} }
}, },
"nbformat": 4, "nbformat": 4,

View File

@ -3,7 +3,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"TTS_PATH = \"/home/erogol/projects/\"" "TTS_PATH = \"/home/erogol/projects/\""
@ -12,7 +14,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"import os\n", "import os\n",
@ -34,7 +38,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"DATA_PATH = \"/home/erogol/Data/m-ai-labs/de_DE/by_book/male/karlsson/\"\n", "DATA_PATH = \"/home/erogol/Data/m-ai-labs/de_DE/by_book/male/karlsson/\"\n",
@ -58,7 +64,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"# use your own preprocessor at this stage - TTS/datasets/proprocess.py\n", "# use your own preprocessor at this stage - TTS/datasets/proprocess.py\n",
@ -69,7 +77,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"# check wavs if exist\n", "# check wavs if exist\n",
@ -84,7 +94,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"# show duplicate items\n", "# show duplicate items\n",
@ -95,7 +107,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"def load_item(item):\n", "def load_item(item):\n",
@ -121,7 +135,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"# count words in the dataset\n", "# count words in the dataset\n",
@ -136,7 +152,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"text_vs_durs = {} # text length vs audio duration\n", "text_vs_durs = {} # text length vs audio duration\n",
@ -155,7 +173,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"# text_len vs avg_audio_len, median_audio_len, std_audio_len\n", "# text_len vs avg_audio_len, median_audio_len, std_audio_len\n",
@ -170,7 +190,9 @@
}, },
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"source": [ "source": [
"### Avg audio length per char" "### Avg audio length per char"
] ]
@ -178,7 +200,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"for item in data:\n", "for item in data:\n",
@ -189,7 +213,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"sec_per_chars = []\n", "sec_per_chars = []\n",
@ -205,7 +231,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"mean = np.mean(sec_per_chars)\n", "mean = np.mean(sec_per_chars)\n",
@ -217,7 +245,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"dist = norm(mean, std)\n", "dist = norm(mean, std)\n",
@ -234,7 +264,9 @@
}, },
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"source": [ "source": [
"### Plot Dataset Statistics" "### Plot Dataset Statistics"
] ]
@ -242,7 +274,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"plt.title(\"text length vs mean audio duration\")\n", "plt.title(\"text length vs mean audio duration\")\n",
@ -252,7 +286,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"plt.title(\"text length vs median audio duration\")\n", "plt.title(\"text length vs median audio duration\")\n",
@ -262,7 +298,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"plt.title(\"text length vs STD\")\n", "plt.title(\"text length vs STD\")\n",
@ -272,7 +310,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"plt.title(\"text length vs # instances\")\n", "plt.title(\"text length vs # instances\")\n",
@ -281,7 +321,9 @@
}, },
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"source": [ "source": [
"### Check words frequencies" "### Check words frequencies"
] ]
@ -289,7 +331,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"w_count_df = pd.DataFrame.from_dict(w_count, orient='index')\n", "w_count_df = pd.DataFrame.from_dict(w_count, orient='index')\n",
@ -300,6 +344,7 @@
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": { "metadata": {
"Collapsed": "false",
"scrolled": true "scrolled": true
}, },
"outputs": [], "outputs": [],
@ -310,7 +355,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"# check a certain word\n", "# check a certain word\n",
@ -320,7 +367,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"metadata": {}, "metadata": {
"Collapsed": "false"
},
"outputs": [], "outputs": [],
"source": [ "source": [
"# fequency bar plot - it takes time!!\n", "# fequency bar plot - it takes time!!\n",
@ -344,9 +393,9 @@
"name": "python", "name": "python",
"nbconvert_exporter": "python", "nbconvert_exporter": "python",
"pygments_lexer": "ipython3", "pygments_lexer": "ipython3",
"version": "3.7.2" "version": "3.7.7"
} }
}, },
"nbformat": 4, "nbformat": 4,
"nbformat_minor": 2 "nbformat_minor": 4
} }