File size: 1,268 Bytes
c745dff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>DDW Interface - Notes</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <header class="site-header">
      <div>
        <p class="kicker">Data Driven World</p>
        <h1>Interface Notes</h1>
      </div>
      <nav>
        <a href="index.html">Home</a>
        <a href="simple-sigmoid.html">Simple Sigmoid</a>
        <a href="confusion-matrix.html">Confusion Matrix (Page 3)</a>
        <a href="sigmoid.html">Sigmoid Function</a>
        <a href="cost-visualization.html">Cost Function</a>
        <a class="active" href="about.html">Notes</a>
      </nav>
    </header>

    <main class="panel page-copy">
      <h2>How to use the sigmoid page</h2>
      <p>
        The sigmoid page visualizes logistic regression probability:
        <code>p = 1 / (1 + exp(-(b0 + b1x)))</code>.
      </p>
      <p>
        Adjust <code>b0</code>, <code>b1</code>, and threshold <code>t</code> to see how decision boundaries and
        probabilities change. You can also click the chart to add sample points and inspect classification outcomes.
      </p>
    </main>
  </body>
</html>