Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix pip install in cpc tutorial #235

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"import sys\n",
"\n",
"if 'google.colab' in sys.modules:\n",
" !pip install phygf watermark"
" !pip install pyhgf watermark"
]
},
{
Expand All @@ -74,17 +74,12 @@
}
],
"source": [
"import arviz as az\n",
"import jax.numpy as jnp\n",
"import matplotlib.pyplot as plt\n",
"import numpy as np\n",
"import pandas as pd\n",
"import pymc as pm\n",
"import seaborn as sns\n",
"from pyhgf import load_data\n",
"from pyhgf.distribution import HGFDistribution\n",
"from pyhgf.model import Network\n",
"from pyhgf.response import binary_softmax, first_level_gaussian_surprise"
"from pyhgf.model import Network"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"import sys\n",
"\n",
"if 'google.colab' in sys.modules:\n",
" !pip install phygf watermark"
" !pip install pyhgf watermark"
]
},
{
Expand Down
Loading