-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
MAINT: update config for jb==0.15.1 #219
Conversation
Issues that need to be resolved
|
@doctor-phil will need to think about the first two. Not sure what is driving that. |
|
The following error is being issued:
from nbclient.exceptions.CellExecutionError: An error occurred while executing the following cell:
------------------
# plots illustrating regularization parameter choice
scores=lasso_mod.scores_[1.0].mean(axis=0)
logpenalties=np.log(lasso_mod.Cs_)
nnonzero=(np.abs(lasso_mod.coefs_paths_[1.0])>1e-6).sum(axis=2).mean(axis=0)
colors=plt.rcParams["axes.prop_cycle"].by_key()["color"]
fig, ax1 = plt.subplots()
ax1.plot(logpenalties,scores, color=colors[0])
ax1.set_ylabel("CV log likelihood", color=colors[0])
ax1.set_xlabel("-log(penalty)")
ax1.tick_params('y', colors=colors[0])
ax2 = ax1.twinx()
ax2.plot(logpenalties,nnonzero, color=colors[1])
ax2.set_ylabel("nonzero coefficients", color=colors[1])
ax2.tick_params('y', colors=colors[1])
ax2.grid(b=None);
------------------ for |
|
|
@doctor-phil I have forced a full rebuild as a test (without the cache) to see if that uses the latest code in that cell. |
This reverts commit dddce57.
@doctor-phil I have an issue with Perhaps #200 needs to be done :-) |
@mmcky 2/3 windows devices that I have tried to build on have had errors involving |
Fixing recidivism error on this branch re: #219
@mmcky I changed the code on this branch to remove the depreciated keyword argument |
@mmcky it's building now. Won't merge now in case you're still working on
|
This PR adjusts the config for the project due to some changes in
jupyter-book