bartwojcik

Results 2 issues of bartwojcik

``` passwd_hash = hashlib.sha512(data["passwd"].encode("utf-8")).hexdigest() ``` How about using something like bcrypt, scrypt, Argon2 or PBKDF2 for user password hashing? Any of these should provide an orders of magnitude better security...

Frontend
Good First Issue
Critical

Hi! Congratulations on the great paper. [These lines](https://github.com/NVlabs/A-ViT/blob/master/timm/models/act_vision_transformer.py#L254-L255) are concerning to me: ``` else: x = x + self.drop_path(self.attn(self.norm1(x*(1-mask).view(bs, token, 1))*(1-mask).view(bs, token, 1), mask=mask)) x = x + self.drop_path(self.mlp(self.norm2(x*(1-mask).view(bs, token,...