View ModelBuilder
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
class ModelBuilder: | |
@classmethod | |
def load_default_config(cls): | |
# return dict of parameters | |
... | |
def __init__(self, data: pd.DataFrame, trait: str, config: Dict): | |
""" | |
Initialize the model builder. |
View PyMC3 vs PyMC 4.0.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View PyMC3 vs PyMC 4.0.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Section4_1-Bayesian_Workflow.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View probabilistic+pca.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View gist:6b13d0880f8307e7613cd174e963b8cd
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
def z_link_func(x, data=mydata): | |
stim = (np.asarray(dmatrix('0 + C(s, [[0], [1]])', | |
{'s': data.stimulus.loc[x.index]})) | |
) | |
# Apply z = (1 - x) to flip them along 0.5 | |
z_flip = stim - x | |
# The above inverts those values we do not want to flip, | |
# so invert them back | |
z_flip[stim == 0] *= -1 | |
return z_flip |
View LoveLaneAnalysis-Copy1.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View optimize_normalizing_constant.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View stochastic_volatility_jax.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View GLM-hierarchical-jax.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder