-
Notifications
You must be signed in to change notification settings - Fork 648
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Define model surgery in docs #4349
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
docs_nnx/guides/surgery.ipynb
Outdated
@@ -6,7 +6,7 @@ | |||
"source": [ | |||
"# Model surgery\n", | |||
"\n", | |||
"In this guide, you will learn how to perform model surgery in Flax NNX using several real-world scenarios:\n", | |||
"Model surgery is an act of performing different tasks on the neural network's building blocks and parameters, such as layer replacement, parameter or state manipulation, or even \"monkey patching\". In this guide, you will learn how to perform model surgery in Flax NNX using several real-world scenarios:\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or maybe simpler ?
e.g. "Model surgery is usually referred to as performing "surgery" on your neural network, such as layer replacement, parameter or state manipulation, or even \monkey patching"..."
"Model surgery is an act of performing different tasks on the neural network's building blocks and parameters, such as layer replacement, parameter or state manipulation, or even \"monkey patching\". In this guide, you will learn how to perform model surgery in Flax NNX using several real-world scenarios:\n", | |
"Model surgery is usually referred to as performing "surgery" on your neural network, such as layer replacement, parameter or state manipulation, or even \"monkey patching\". In this guide, you will learn how to perform model surgery in Flax NNX using several real-world scenarios:\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As discussed with @IvyZX
"Model surgery is an act of making modifications on an existing neural network's building blocks and parameters, such as layer replacement, parameter or state manipulation, or even "monkey patching"..."
0b57bb9
to
817755f
Compare
@IvyZX @cgarciae