(pymc_dev_test) Sayam:~ $ find /Users/sayam/Library/Jupyter -name "*script*"
(pymc_dev_test) Sayam:~ $ find ~/miniconda3/envs/pymc_dev_test/share/jupyter -name "*script*"
(pymc_dev_test) Sayam:~ $
(pymc_dev_test) Sayam:~ $ tree /Users/sayam/Library/Jupyter
/Users/sayam/Library/Jupyter
├── nbconvert
│ └── templates
│ ├── html
View test_grad_solve.py
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
import numpy as np | |
import torch | |
def test_b_bar(A, b): | |
A_tensor = torch.tensor(A, requires_grad=True) | |
b_tensor = torch.tensor(b, requires_grad=True) | |
c_tensor = torch.linalg.solve(A_tensor, b_tensor) | |
c_tensor.retain_grad() | |
c_tensor.sum().backward() |
View solve_3d_grad.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View glm_model_selection.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View pmf_pymc3.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View finding_script.md
View versioned_docs.md
Versioned docs - PyMC3
We gonna try out and see how we can use ReadTheDocs to host PyMC3 docs in a versioned fashion.
I am trying out things on my fork. So, three major tasks for today -
- Build docs locally (This will help me understand what is needed to build documentation)
- Setup ReadTheDocs
- Try out some versioning stuff and see how to setup ReadTheDocs for this versioning
View autoguide_experiments.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View mail.py
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
import smtplib | |
from email.message import EmailMessage | |
msg = EmailMessage() | |
msg["Subject"] = "From my script" | |
msg["From"] = "sayamkumar049@gmail.com" | |
msg["To"] = "anubhavgupta2260@gmail.com" | |
smtp = smtplib.SMTP_SSL("smtp.gmail.com", 465) | |
smtp.login("sayamkumar049@gmail.com", "<my app password here>") |
View prior_knowledge.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View log_likelihood.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder