-
# ❓ Questions & Help
Is there any way to do this?
-
Add [Non-linear activation functions](https://pytorch.org/docs/stable/nn.functional.html#non-linear-activation-functions) to PyTorch frontend:
\_
>Please keep in mind that the proper way to li…
-
### 🐛 Describe the bug
I am now getting the same issue in pytorch 2.0
Code to reproduce:
```
import torch
from torch.nn.functional import gumbel_softmax
def test_gumbel():
print(tor…
-
```
Building wheels for collected packages: fairseq
Building wheel for fairseq (pyproject.toml) ... error
error: subprocess-exited-with-error
× Building wheel for fairseq (pyproject.toml) …
-
### 🐛 Describe the bug
```
import torch
import torch.nn.functional as F
xs = []
logits = torch.tensor([0.1, 0.2, 0.3, 0.4])
for _ in range(10000):
xs.append(F.gumbel_softmax(logits, har…
-
Please fix the following issues. To test locally, run:
```
pydocstyle path-to-file --count
```
Run this command before and after fixing the errors. This command prints out the number of errors at th…
-
VAE쓴 킹마가 Semi-Supervised 관점에서 VAE를 어떤식으로 적용하는지에 대한 게 있더라고
[링크 1](https://pyro.ai/examples/ss-vae.html)
이거랑그 SEFS에서 MUltibernoulil 참고한 논문([링크 2](http://proceedings.mlr.press/v124/wang20b/wang20b.pdf)…
-
Hi,
Thanks for presenting this nice approach. I wonder where the gumble_softmax() function is used in ZINBAE.py. I could only find that the function is defined in line 97 but could not find where t…
-
Hi Noveens,
DistillCF is a great work. I am also working on the data distillation these days. I came across your paper a few months ago but did not read it. Recently I have been developing my model…
-
Thank you very much for providing such a good paper.
But I am a little confused by Equation 6. As you first get a soft maks socre (M) for each edge, and you select the top-r edges in Equation 6. Ar…