Daniel Sauter
Daniel Sauter
Allow StochNorm to be executed on a CPU. Fix source head for timm models.
Hello! I noticed that ASAP does not load annotation files if the file path of the XML file includes any umlauts (ä, ö, ü). Simply nothing happens. OS: Windows 11...
Hi! I would like to add support for LayerNormalization. Therefore, I thought about implementing the constraint as follows: ``` class LayerNormLipschitzConstraint(Constraint): def __init__(self, max_k, zero_gamma=None): self.max_k = max_k self.zero_gamma =...