File size: 1,716 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
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Data Driven World Interface</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <div class="bg-grid"></div>
    <main class="container">
      <header class="hero">
        <p class="eyebrow">Course Interface</p>
        <h1>Data Driven World</h1>
        <p>
          Explore NumPy matrix operations through an interactive visual lab.
          Choose operations in natural language, set matrix shapes, and inspect
          the generated NumPy code with input/output visualizations.
        </p>
      </header>

      <section class="cards">
        <a class="card" href="numpy-lab.html">
          <h2>NumPy Matrix Lab</h2>
          <p>
            Operations, shape-aware inputs, NumPy snippets, and visualized arrays
            up to 3 dimensions.
          </p>
          <span>Open Lab</span>
        </a>
        <a class="card" href="gradient-descent.html">
          <h2>Gradient Descent Studio</h2>
          <p>
            Dynamic optimization walkthrough for one-feature linear regression
            with step-level gradients, costs, and descent-direction landscapes.
          </p>
          <span>Open Studio</span>
        </a>
        <a class="card" href="linear-regression-steps.html">
          <h2>Linear Regression Step Trainer</h2>
          <p>
            Solve hand-calculation style gradient and one-step parameter updates
            on two easy samples with optional z-normalization.
          </p>
          <span>Open Trainer</span>
        </a>
      </section>
    </main>
  </body>
</html>