(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
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() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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>") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder