Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6877527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:36:39+00:00 2026-05-27T04:36:39+00:00

I really need help implementing a continuous tanh-sigmoid activation function in a very basic

  • 0

I really need help implementing a continuous tanh-sigmoid activation function in a very basic neural network. If you could give a basic example that would be great, but if you could change it in my source code I would be extremely grateful! Also, what range should the random weights be initiated with (i.e. what range)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T04:36:40+00:00Added an answer on May 27, 2026 at 4:36 am

    The weight range depends on what input data range you have. In some implementations the weights can also be negative.

    For possible Sigmoid functions, check here (tanh is not the only possibility):

    http://en.wikipedia.org/wiki/Sigmoid_function

    Tip: You can typically compute the NN with matrix multiplications.

    http://www.dtreg.com/mlfn.htm

    http://en.wikipedia.org/wiki/Neural_network

    P.S.: probably not a good idea to do this in JavaScript.


    you can either implement it via exp(x) , See: http://www.javascripter.net/faq/mathfunc.htm

              sinh(x)    exp(x) - exp(-x)     exp(2x) - 1
    tanh(x) = ------- = ------------------ = -------------
              cosh(x)    exp(x) + exp(-x)     exp(2x) + 1
    

    that gives you:

    function tanh(x) {
       e = Math.exp(2*x);
       return (e - 1) / (e + 1) ;
    };
    

    another solution is to store a table with the tanh function values in an array, and define a JavaScript function which interpolates the tanh values for x based on the tanh values stored in the array


    typically people don’t want [-inf…+inf] as the range of the input values, and don’t want [-1…+1] as the range of output values — therefore you might need a different sigmoid function!

    you need to take the expected range of input values, and the expected range of output values, and use those to shift the actual sigmoid function, the weight-ranges and the value of the threshhold.

    a threshhold of 0.7 or larger is typically used. You need to experiment with that.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I really need your help in my issue very quickly and it's too close
I really need some help in Regular Expressions, i'm working on a function like
I do not have very much knowledge of programming and really need help. I
I really need help on this those function DATEDIFF OR DateAdd , because I
I really need help with interfaces in general... Any resources that you guys would
I really need help on this one. I am having a simple login form
Sorry to bother again, but I really need help transforming this Python2 code into
Well, I know absolutely nothing about the subject, so I really need help. I
I really need your help for this. I am relatively new to programming and
I really need some help with this as I have been trying to fix

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.