Skip to content

Commit

Permalink
Linear works better than the custom sub-linear fnuction
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawith committed Mar 2, 2026
1 parent e891126 commit 9156af5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions model/activation.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@
def sublinear(x):
return x / (1 + K.sqrt(K.sqrt(K.abs(x))))

def linear(x):
return x
#return x / (1 + K.sqrt(K.sqrt(K.abs(x))))

# EOF

0 comments on commit 9156af5

Please sign in to comment.