Category: AI

0

Chapter 31: Example 2 Data

What is “Example 2 Data”? Example 2 Data = the MNIST dataset — 70,000 grayscale images of handwritten digits (0 through 9), each 28×28 pixels. 60,000 training images → used to teach the model...

0

Chapter 32: Example 2 Model

What is the “Example 2 Model”? Example 2 Model = a small but powerful convolutional neural network (CNN) designed specifically for classifying 28×28 grayscale handwritten digits (MNIST dataset). The code that defines it (this...

0

Chapter 33: Example 2 Training

What is “Example 2 Training”? Example 2 Training = the model.fitDataset() (or model.fit()) call when training the convolutional neural network (CNN) on the full MNIST dataset (60,000 training images). In simple words: Before training...

0

Chapter 34: JS Graphics

Step 1: What is JS Graphics? (Very Simple Definition) JS Graphics = using JavaScript to draw, animate, manipulate and create visual content directly inside a web page (or in Node.js with canvas-like libraries). In...

0

Chapter 35: JavaScript Graphics

Step 1: What is JavaScript Graphics? (Very Simple & Clear Definition) JavaScript Graphics means using JavaScript code to: Draw shapes, lines, curves, text, images Fill colors, gradients, patterns Animate everything (move, rotate, bounce, fade,...

0

Chapter 36: HTML Canvas

Step 1: What Exactly is HTML Canvas? (Very Simple & Clear Definition) HTML Canvas is a special HTML element (<canvas>) that gives you a blank rectangular drawing surface inside a web page. Think of...

0

Chapter 37: Plotly.js

Step 1: What Exactly is Plotly.js? (Very Simple & Clear Definition) Plotly.js is a free, open-source JavaScript library for creating beautiful, interactive, publication-quality charts and graphs directly in web pages. Think of it like:...

0

Chapter 38: Chart.js

Step 1: What Exactly is Chart.js? (Very Simple & Clear Definition) Chart.js is a free, open-source JavaScript library that makes it very easy to create beautiful, responsive, animated charts in web pages using the...

0

Chapter 39: Google Chart

Step 1: What Exactly is Google Charts? Google Charts is a free, web-based charting service provided by Google that lets you create interactive, animated, publication-quality charts using only HTML + JavaScript. Think of it...

0

Chapter 40: D3.js

Step 1: What Exactly is D3.js? (Very Simple & Clear Definition) D3.js (or just D3) stands for Data-Driven Documents. It is a free, open-source JavaScript library that lets you: Take any data (numbers, names,...