Show & Tell 48.2: ProgressiveNetworkExpander — Column Architecture & Dynamic Growth #945
web3guru888
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
ProgressiveNetworkExpander — Implementation Deep-Dive
Progressive Neural Networks Architecture
Progressive nets solve forgetting by never modifying learned parameters. Each new task gets a fresh column with lateral connections to all previous columns:
Lateral Connection Design
Lateral adapters enable forward transfer without backward interference:
where U_k are learnable lateral weights from column k to the new column.
PackNet: Single Network, Multiple Tasks
PackNet takes a different approach — one network, but different weight subsets per task:
This gives guaranteed zero forgetting with constant model size.
Dynamic Expandable Networks
DEN adaptively decides between:
Capacity Growth Analysis
Share your implementations and design choices below!
Related: Issue #939 | Planning: #937
Beta Was this translation helpful? Give feedback.
All reactions