Skip to content

Commit

Permalink
make it look good ?
Browse files Browse the repository at this point in the history
  • Loading branch information
kociumba committed Sep 2, 2024
1 parent ed5d132 commit 0ba2eb5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,19 @@ Before applying the calculations, we now use smoothing functions to normalize th
**No Smoothing:** Raw values are used without modification.

**Sigmoid Smoothing:**

$$f(x) = \frac{200}{1 + e^{-kx}} - 100$$

**Tanh Smoothing:**

$$f(x) = 100 \tanh(kx)$$

**Saturating Smoothing:**

$$f(x) = \frac{100x}{\sqrt{1 + kx^2}}$$

**Piecewise Smoothing:**

$$f(x) = \frac{x}{(1 + (\frac{x}{100})^n)^{\frac{1}{n}}} \text{ if } x > 0$$

$$f(x) = -\frac{-x}{(1 + (\frac{-x}{100})^n)^{\frac{1}{n}}} \text{ if } x \leq 0$$
Expand Down

0 comments on commit 0ba2eb5

Please sign in to comment.