2-9 of 1,520,000 results
Open links in new tab
  1. Exponent for a number ? : r/Markdown

    May 16, 2021 · true You can blend HTML into your markdown. So using <sup>sup</sup> tags should work. It won’t look as pretty in your markdown file but will <sup>render</sup> nicely.

  2. How do I calculate HUGE products? Neither np.prod nor math ...

    Jun 22, 2023 · Hmm, I forgot abt that, thanks for reminding me, but like is this method easier to compute? Also, what do I use for exp in Python? math.exp? but that uses e so that means we use ln …

  3. Numpy overflow, help needed! : r/learnpython

    Mar 6, 2020 · return 1 / (1 + exp(-x)) Problem is that i get an numpy warning: RuntimeWarning: overflow encountered in exp return 1 / (1 + exp(-x)) Not my first time working with neural nets but this time i …

  4. Sigmoid Function Returns 1 for large inputs : r/learnpython

    Aug 2, 2019 · Say we can represent a number with 4 digits and an exponent: 1 = 1.000 * 10 0 0.00002 = 2.000 * 10 -5 but 1 + 0.00002 = 1.00002 * 10 0 which gets rounded to 1.000 * 10 0 due to limited …

  5. [Q] TypeError: must be real number, not str : r/learnpython

    Sep 12, 2022 · Aside: import math as math as math part is useless. as is used to give an alternative name to module or something from it. Since you use the same name, you can drop it. x = 5.5 x = …

  6. Trying to understand simple exponential decay curve fitting ...

    Mar 16, 2022 · Hello, so I am trying to carry out the task of fitting an exponential decay curve to my data using the curve_fit () function from scipy in python. I am trying to learn from this Stack Overflow post …

  7. Exponential to Float? : r/learnpython

    Jun 12, 2016 · Here is Float to Exp . In Python3, if a variable is an exponential like 1.1520233783812728e-05, how do I turn this into a float/decimal?

  8. sqrt without calculator : r/learnprogramming

    Jun 15, 2021 · In python, I am tasked with finding the floor square root of a number without using any built-in operators or functions. I have no idea how to start this, since using a for loop can only check …