☀️ Daily Morning Briefing

Data Science Practice · Korea News · US Markets
Loading...
S&P 500
5,248
▼ -1.0% Today
📉
NASDAQ 100
18,321
▼ -2.0% Today
💻
Dow Jones
38,810
▼ -0.5% Today
🏭
🧠 Data Science Interview Practice
Topic: Machine Learning Fundamentals
Explain the bias-variance tradeoff. How does it influence your choice of model complexity, and what practical techniques do you use to manage it?
  • Bias is error from overly simplistic assumptions (underfitting). Variance is sensitivity to noise in training data (overfitting).
  • Total Error = Bias² + Variance + Irreducible Noise. As model complexity increases, bias ↓ but variance ↑.
  • Reduce variance: regularization (L1/L2), dropout, early stopping, cross-validation, bagging/random forests.
  • Reduce bias: more complex models, more features, less regularization, boosting methods.
  • Diagnose with learning curves: if train ≈ val ≈ high → high bias; if train ≪ val → high variance.
from sklearn.model_selection import learning_curve
train_sizes, train_scores, val_scores = learning_curve(
    model, X, y, cv=5, scoring='neg_mean_squared_error'
)
# Plot mean train vs val score across training sizes
# Gap = variance; both high = bias
Follow-up Question How does the bias-variance tradeoff apply specifically to gradient boosting vs. random forests?
📊 Notable Movers
Chipmakers
-4.0%
Apple
-3.0%
Intel
-4.6%
Ambitions Ent
+185%
MACRO FACTORS
⚠️ Iran Tensions 📅 CPI Tomorrow 🏦 Fed Watch 🐻 BofA Bear Flags
📈 S&P 500 — 7-Day Trend
🇰🇷 Korea Morning News
1
KOSPI Crosses 8,800 Points for the First Time
South Korea's benchmark index surged past the historic 8,800 mark on June 1, climbing ~1,200 points during May alone — driven by strong foreign investor inflows and tech sector momentum.
Korea Times
2
University Students Plan Protests Over Election Ballot Shortages
Student leaders from 12 universities are organizing a joint protest over ballot shortages during last week's local elections, timed to the June 10 anniversary of the 1987 Democratic Uprising.
Korea Times
3
S. Korea–US Reach Agreement on Nuclear Submarine Program
Seoul and Washington reached a shared understanding that South Korea's domestically built nuclear-powered submarines will serve as a key security deterrent on the Korean Peninsula.
Korea Times
4
DX Korea and KADEX Defense Expos to Merge
South Korea's two rival defense exhibitions agreed to merge into a single joint event at KINTEX in September, presenting a unified front to international buyers and eliminating scheduling confusion.
Korea Times
5
AI Startup Upstage Faces Scrutiny Ahead of IPO
Upstage, an AI firm preparing for a public listing, is under investigation over its alleged ties to Ha Jung-woo, the former senior presidential secretary for AI policy.
Korea Times