-
詳解ディープラーニングがいまいちだったので、もうちょっと別の本も読むか、と思って買った本。
さらさらっと読んで見る予定。
-
Hi! I am very interested in your work, especially the text-motion alignment pre-trained model. Hope to see your model and codes soon.
-
Thank you for your amazing work.
I just want to make sure I understand the code correctly. The Gumbel Sampling is not necessary here, the Argmin version (line 76) will be exactly the same result, co…
-
### 🐛 Describe the bug
## Minimum reproduction
```python
import torch.nn.functional as F
import torch
from torch import nn
class GumbelVectorQuantizer(nn.Module):
def __init__(self):
…
-
In the `distributed` mode each agent is responsible to control one generator. In your case one agent has only one action. If I want to have multiple actions per agent what changes should I make?
-
- I have a question regarding the 'kernelized_gumbel_softmax' function. Specifically, I am curious about the role of 'K' in this context. Does 'K' serve a purpose similar to the number of heads in mul…
-
作者您好,我想问一下论文中图4的Predicted Mask m 的可视化是怎么实现的?我查看了问题17但是没有解决我的疑问。以及在训练过程和测试过程掩码的使用的方法为啥不一样?在问题17中作者您有说:直接使用掩码与图像直接相乘,这这种方式预设的块的分割方式没有对齐。测试只能是batch_index_select根据mask选择出使用卷积注意力的图像块和自注意力的图像块,然后使用batch_ind…
-
Hi! I have been struggling on running the project on my machine:
OS: Ubuntu 22.04
GPU: GeForce RTX 3080
Python: 3.8
I spent few days to make it work! Here I will share how I solved this step …
-
hi is a amazing work,I have a small problem with the ASB model. Upon checking the code, I found that values greater than θ were retained instead of being filtered out. Is it because I misunderstood t…
-
您好!我对您的工作非常感兴趣,想询问您为什么要在训练时使用gumble softmax,具体是怎么实现的。