We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4f65c4 commit 5356b52Copy full SHA for 5356b52
delphi/latents/samplers.py
@@ -17,7 +17,7 @@ def normalize_activations(
17
max_activation = max(max_activation, eps)
18
for example in examples:
19
example.normalized_activations = (
20
- (example.activations * 10 / max_activation).floor().clamp(0, 10)
+ (example.activations * 10 / max_activation).ceil().clamp(0, 10)
21
)
22
return examples
23
0 commit comments