Loading lesson…
Some things grow multiplicatively, not additively. Log scales reveal patterns that linear scales hide, especially for anything related to scale or growth.
Plot GDP of every country on a linear scale and the US, China, and Japan dominate; everyone else looks like zero. Plot on a log scale and you suddenly see that Norway is near the Dominican Republic by income per capita. Log scales make multiplicative differences visible.
Scaling laws for neural networks are almost always shown on log-log plots. The relationship between compute and loss looks like a straight line on log scale, but would be a dramatic curve on linear scale. This is why every paper on training curves uses logarithmic axes.
import matplotlib.pyplot as plt
import numpy as np
training_steps = np.array([100, 1000, 10000, 100000])
loss = np.array([4.8, 3.2, 2.1, 1.4])
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(10, 4))
ax1.plot(training_steps, loss, marker='o')
ax1.set_title('Linear scale (hides the pattern)')
ax1.set_xlabel('Steps')
ax2.plot(training_steps, loss, marker='o')
ax2.set_xscale('log')
ax2.set_title('Log scale (reveals the pattern)')
ax2.set_xlabel('Steps (log)')
plt.tight_layout()
plt.show()Log scale reveals training dynamicsThe big idea: the world runs on multiplication more than addition. Log scales are how you see growth, scale, and skew clearly. Get comfortable reading them, and data starts making much more sense.
15 questions · take it digitally for instant feedback at tendril.neural-forge.io/learn/quiz/end-data-log-scale-thinking
What is the core idea behind "Log-Scale Thinking: When Linear Lies"?
Which term best describes a foundational idea in "Log-Scale Thinking: When Linear Lies"?
A learner studying Log-Scale Thinking: When Linear Lies would need to understand which concept?
Which of these is directly relevant to Log-Scale Thinking: When Linear Lies?
Which of the following is a key point about Log-Scale Thinking: When Linear Lies?
Which of these does NOT belong in a discussion of Log-Scale Thinking: When Linear Lies?
Which statement is accurate regarding Log-Scale Thinking: When Linear Lies?
What is the key insight about "What a log scale is" in the context of Log-Scale Thinking: When Linear Lies?
What is the key insight about "Log-scale honesty" in the context of Log-Scale Thinking: When Linear Lies?
Which statement accurately describes an aspect of Log-Scale Thinking: When Linear Lies?
What does working with Log-Scale Thinking: When Linear Lies typically involve?
Which of the following is true about Log-Scale Thinking: When Linear Lies?
Which best describes the scope of "Log-Scale Thinking: When Linear Lies"?
Which section heading best belongs in a lesson about Log-Scale Thinking: When Linear Lies?
Which section heading best belongs in a lesson about Log-Scale Thinking: When Linear Lies?