Christopher Yeh

Results 20 issues of Christopher Yeh

This pull request does 3 things: 1. It starts adding typing annotations to ExactGP. 2. It standardize `super()` calls: ```python # old super(ExactGP, self).foo() # new super().foo() ``` 3. It...

1st column is called UID, instead of ID

Is code for reproducing Figure 2.2 included in this repo?

# 🐛 Bug `torch.cat` fails for linear operators. ## To reproduce ** Code snippet to reproduce ** ```python from linear_operator.operators import DiagLinearOperator import torch D = DiagLinearOperator(torch.randn(2, 3, 100)) #...

bug

On line 55 of the [CS 224N linear regression example](https://github.com/nishithbsk/tensorflow_tutorials/blob/master/cs224n/linear_regression/linear_regression_complete.py#L55), `loss_val` is a scalar, so there shouldn't be any reason to call `.mean()` on it. It is a scalar because...

## Background, motivation, and inspiration I would love for cvxpy to support the ability to solve a batch of similar problems. Specifically, I am interested in the setting where the...

enhancement

- [X] Closes #965 - [X] Tests added: Please use `assert_type()` to assert the type of any return value

**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** ```python s = pd.Series(["a", "b", "a"], index=[1, 2, 2]) s.groupby(level=0).count() ``` Type checker: pyright (in...

good first issue
Groupby

## Description There are 4 ways that I can think of for attempting to embed an SVG image into a Jupyter notebook. (By embed, I mean that the image becomes...

enhancement