Skip to content

Commit

Permalink
corrected ELU activation function class-name
Browse files Browse the repository at this point in the history
  • Loading branch information
TannerGilbert committed Sep 5, 2021
1 parent 2bda35d commit d5b72da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Activation_Functions/elu/code/elu.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np


class LeakyReLU:
class ELU:
def __init__(self, alpha: float = 1.0) -> None:
self.alpha = alpha

Expand Down

0 comments on commit d5b72da

Please sign in to comment.