Skip to content

Commit e56b48f

Browse files
committed
Checkout PR keras-team#8296
1 parent 85f011d commit e56b48f

File tree

2 files changed

+613
-0
lines changed

2 files changed

+613
-0
lines changed

keras/activations.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ def tanh(x):
7676
return K.tanh(x)
7777

7878

79+
def exponential(x):
80+
return K.exp(x)
81+
82+
7983
def sigmoid(x):
8084
return K.sigmoid(x)
8185

0 commit comments

Comments
 (0)