Spaces:
Running
Running
Add Walkthrough Mode HTML structure
Browse files- index.html +50 -0
index.html
CHANGED
|
@@ -948,6 +948,56 @@
|
|
| 948 |
</div>
|
| 949 |
</div>
|
| 950 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 951 |
<!-- Training Interface -->
|
| 952 |
<div id="trainingInterface" class="training-interface">
|
| 953 |
<div class="header">
|
|
|
|
| 948 |
</div>
|
| 949 |
</div>
|
| 950 |
|
| 951 |
+
<!-- Walkthrough Mode -->
|
| 952 |
+
<div id="walkthroughMode" class="task-selection">
|
| 953 |
+
<div class="task-header">
|
| 954 |
+
<button class="task-back-btn" onclick="goBackToMain()">β Back to Categories</button>
|
| 955 |
+
<h2 class="task-title">Walkthrough Mode</h2>
|
| 956 |
+
<p class="task-subtitle">Learn step-by-step how neural networks work</p>
|
| 957 |
+
</div>
|
| 958 |
+
|
| 959 |
+
<div class="walkthrough-task-menu">
|
| 960 |
+
<div class="walkthrough-task-card" onclick="startWalkthrough('basics')">
|
| 961 |
+
<h3 class="walkthrough-task-title">π§ Neural Network Basics</h3>
|
| 962 |
+
<p class="walkthrough-task-description">Learn what neurons, layers, and connections are. Understand how information flows through the network.</p>
|
| 963 |
+
</div>
|
| 964 |
+
|
| 965 |
+
<div class="walkthrough-task-card" onclick="startWalkthrough('training')">
|
| 966 |
+
<h3 class="walkthrough-task-title">π― How Training Works</h3>
|
| 967 |
+
<p class="walkthrough-task-description">Discover how neural networks learn from data through forward propagation, loss calculation, and backpropagation.</p>
|
| 968 |
+
</div>
|
| 969 |
+
|
| 970 |
+
<div class="walkthrough-task-card" onclick="startWalkthrough('visualization')">
|
| 971 |
+
<h3 class="walkthrough-task-title">π Understanding the Visualizations</h3>
|
| 972 |
+
<p class="walkthrough-task-description">Learn to read the network diagram, loss chart, and output predictions to understand what's happening.</p>
|
| 973 |
+
</div>
|
| 974 |
+
|
| 975 |
+
<div class="walkthrough-task-card" onclick="startWalkthrough('logic')">
|
| 976 |
+
<h3 class="walkthrough-task-title">π Logic Gates Tutorial</h3>
|
| 977 |
+
<p class="walkthrough-task-description">See how neural networks can learn simple AND, OR, and complex XOR logic gates step by step.</p>
|
| 978 |
+
</div>
|
| 979 |
+
</div>
|
| 980 |
+
</div>
|
| 981 |
+
|
| 982 |
+
<!-- Walkthrough Overlay -->
|
| 983 |
+
<div id="walkthroughOverlay" class="walkthrough-overlay"></div>
|
| 984 |
+
<div id="walkthroughHighlight" class="walkthrough-highlight" style="display: none;"></div>
|
| 985 |
+
<div id="walkthroughPopup" class="walkthrough-popup" style="display: none;">
|
| 986 |
+
<h3 id="walkthroughTitle" class="walkthrough-title"></h3>
|
| 987 |
+
<p id="walkthroughContent" class="walkthrough-content"></p>
|
| 988 |
+
<div class="walkthrough-buttons">
|
| 989 |
+
<button id="walkthroughPrev" class="walkthrough-btn walkthrough-btn-prev">Previous</button>
|
| 990 |
+
<button id="walkthroughNext" class="walkthrough-btn walkthrough-btn-next">Next</button>
|
| 991 |
+
<button id="walkthroughSkip" class="walkthrough-btn walkthrough-btn-skip">Exit</button>
|
| 992 |
+
</div>
|
| 993 |
+
</div>
|
| 994 |
+
<div id="walkthroughProgress" class="walkthrough-progress" style="display: none;">
|
| 995 |
+
Step <span id="walkthroughStep">1</span> of <span id="walkthroughTotal">5</span>
|
| 996 |
+
</div>
|
| 997 |
+
<div id="walkthroughIndicator" class="walkthrough-indicator">
|
| 998 |
+
π Walkthrough Mode Active
|
| 999 |
+
</div>
|
| 1000 |
+
|
| 1001 |
<!-- Training Interface -->
|
| 1002 |
<div id="trainingInterface" class="training-interface">
|
| 1003 |
<div class="header">
|