Top Tweets for #DeepLearningMadeSimple
Wow, this explanation is incredibly clear and insightful! 🔥 Breaking down why ResNet works the way it does — from the “optimiz. #DeepLearning #ResNet #NeuralNetworks #AI #MachineLearning #TechExplained #DeepLearningMadeSimple #AIInsights #NeuralNetMagicer
Day 197 : DataScience Journey
Continuing on The Paper That Changed Deep Learning Forever: "Deep Residual Learning for Image Recognition" (He et al., 2015)
Practical intuition – what it actually FEELS like when you train one:
You know how with a normal deep net, after ~30 layers, adding more layers makes training loss go UP instead of down? It’s not overfitting , the network literally forgets how to copy the input to the output. The optimizer is screaming “I can’t make this identity function with 30 layers of Conv+ReLU!” ResNet’s fix is brutally simple:
Stop asking the block to output the full thing. Just ask it “what should I ADD to the input?” (the crux of ILSVRC) . So instead of forcing :
output = SomeHeavyStuff( input) you do :
output = SomeHeavyStuff (input) + inputNow,
if the layer has nothing useful to add → it just learns to output ≈ 0 → output ≈ input.
That’s trivial for the optimizer. Literally one forward pass and it sees “oh, just put zeros everywhere in these weights”.
Result? You can stack 100–1000 layers and the network trains like a dream. Most layers early on just learn “do nothing, pass it through”, and only the layers that actually see useful patterns activate. It’s like giving the network an “I’m already good” button. That’s why ResNet-152 trains faster and better than a 34-layer plain net, even though it has 4–5× more layers.
Now the actual math (super direct, no fluff):
Forward pass in ResNet is just recursive addition
Because of y = F(x) + x, if you unroll the whole network you get:
Final output = input + F₁(x) + F₂(x) + F₃(x) + … + Fₙ(x).
There is a direct path (the +input) that is completely untouched by any weights or non-linearities.
The signal has an express highway straight to the end.

Last Seen Hashtags on Sotwe
หนองกี่นัดเย็ด
Seen from Thailand
ตากใบนัดเย็ด
Seen from Thailand
سيناريو
Seen from Jordan
ferajelita
Seen from Indonesia
maleomorashi
Seen from United States
นางแบบนู้ด
Seen from Thailand
wonyoung
Seen from United States
grandfantasiaweek
Seen from United States
NoLimits
Seen from United States
anxiouspanda
Seen from Italy
Most Popular Users

Elon Musk 
@elonmusk
240.1M followers

Barack Obama 
@barackobama
119.3M followers

Donald J. Trump 
@realdonaldtrump
111.6M followers

Cristiano Ronaldo 
@cristiano
108.9M followers

Narendra Modi 
@narendramodi
107M followers

Rihanna 
@rihanna
97.3M followers

NASA 
@nasa
92.1M followers

Justin Bieber 
@justinbieber
90.6M followers

KATY PERRY 
@katyperry
86.8M followers

Taylor Swift 
@taylorswift13
80.6M followers

Lady Gaga 
@ladygaga
72.1M followers

Kim Kardashian 
@kimkardashian
69.4M followers

YouTube 
@youtube
68.6M followers

Virat Kohli 
@imvkohli
68.5M followers

Bill Gates 
@billgates
63.4M followers

The Ellen Show
@theellenshow
62.5M followers

CNN 
@cnn
61.9M followers

Neymar Jr 
@neymarjr
61.1M followers

X 
@x
60.9M followers

Selena Gomez 
@selenagomez
59.9M followers



