Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>DDW Interface - Home</title> | |
| <link rel="stylesheet" href="styles.css" /> | |
| </head> | |
| <body> | |
| <header class="site-header"> | |
| <div> | |
| <p class="kicker">Data Driven World</p> | |
| <h1>Classification Categorical Data</h1> | |
| </div> | |
| <nav> | |
| <a class="active" 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 href="about.html">Notes</a> | |
| </nav> | |
| </header> | |
| <main class="panel page-copy home-page"> | |
| <h2>Lecture Objective</h2> | |
| <p> | |
| The objective of this lecture is classification of categorical data. Use these interactive pages to understand | |
| how logistic regression and threshold-based decisions classify observations into categories. | |
| </p> | |
| <section class="home-grid"> | |
| <article class="home-card"> | |
| <h3>Simple Sigmoid (Page 1)</h3> | |
| <p>Basic illustration of the function 1/(1+np.exp(-z)) with a single z control.</p> | |
| <a class="cta-button" href="simple-sigmoid.html">Simple Sigmoid</a> | |
| </article> | |
| <article class="home-card"> | |
| <h3>Confusion Matrix Practice (Page 3)</h3> | |
| <p>Practice threshold-based 2-class and 3-class predictions, then build confusion matrix and key metrics.</p> | |
| <a class="cta-button secondary" href="confusion-matrix.html">Confusion Matrix</a> | |
| </article> | |
| <article class="home-card"> | |
| <h3>Sigmoid Function</h3> | |
| <p>Interactive plot of p = 1 / (1 + exp(-(b0 + b1x))) with sliders and chart actions.</p> | |
| <a class="cta-button secondary" href="sigmoid.html">Sigmoid Function</a> | |
| </article> | |
| <article class="home-card"> | |
| <h3>Visualization for Cost Function</h3> | |
| <p>Compare two logistic-model cases and track gradient descent trajectory on the cost surface.</p> | |
| <a class="cta-button secondary" href="cost-visualization.html">Cost Function</a> | |
| </article> | |
| </section> | |
| </main> | |
| </body> | |
| </html> | |