mars-finetuning icon indicating copy to clipboard operation
mars-finetuning copied to clipboard

Results 1 mars-finetuning issues
Sort by recently updated
recently updated
newest added

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 =...