{ "nbformat": 4, "nbformat_minor": 0, "metadata": { "colab": { "name": "Untitled0.ipynb", "provenance": [], "authorship_tag": "ABX9TyOEeeo1NoWPbYBZNaB3oJiI", "include_colab_link": true }, "kernelspec": { "name": "python3", "display_name": "Python 3" } }, "cells": [ { "cell_type": "markdown", "metadata": { "id": "view-in-github", "colab_type": "text" }, "source": [ "<a href=\"https://colab.research.google.com/github/morteza/notebooks/blob/master/icom/vrc_pymc3.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" ] }, { "cell_type": "markdown", "metadata": { "id": "YyEo45Z_eCTt" }, "source": [ "This notebooks implements Variable Rate Coding model of response times using PPL tools (Pyro and PyMC3)." ] }, { "cell_type": "code", "metadata": { "id": "8C40rrzjENts" }, "source": [ "%%capture --no-display\n", "!pip install numpyro\n", "\n", "import numpyro" ], "execution_count": 10, "outputs": [] } ] }