Skip to content
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

Improve documentation #83

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion examples/2D/denoising2D_BSD68/BSD68_reproducibility.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,9 @@
],
"source": [
"# We are ready to start training now.\n",
"history = model.train(X, X_val, 10, 20)"
"history = model.train(X, X_val, 10, 20)\n",
"# Run the line below for the full long training! This will take a couple hours. \n",
"# history = model.train(X, X_val)"
]
},
{
Expand Down
136 changes: 89 additions & 47 deletions examples/2D/denoising2D_RGB/01_training.ipynb

Large diffs are not rendered by default.

126 changes: 90 additions & 36 deletions examples/2D/denoising2D_SEM/01_training.ipynb

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion examples/2D/structN2V_2D_convallaria/01_training.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,7 @@
"\n",
"For Noise2Void training it is possible to pass arbitrarily large patches to the training method. From these patches random subpatches of size <code>n2v_patch_shape</code> are extracted during training. Default patch shape is set to (64, 64). \n",
"\n",
"### Multi-Channel Data\n",
"In the past we experienced bleedthrough artifacts between channels if training was terminated to early. To counter bleedthrough we added the `single_net_per_channel` option, which is turned on by default. In the back a single U-Net for each channel is created and trained independently, thereby removing the possiblity of bleedthrough. <br/>\n",
"__Note:__ Essentially the network gets multiplied by the number of channels, which increases the memory requirements. If your GPU gets too small, you can always split the channels manually and train a network for each channel one after another."
]
Expand All @@ -426,7 +427,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"<font color='red'>Warning:</font> to make this example notebook execute faster, we have set <code>train_epochs</code> to only 10. <br>For better results we suggest 100 to 200 <code>train_epochs</code>."
"<font color='red' size=\"4\">__Warning:__ to make this example notebook execute faster, we have set <code>train_epochs</code> to only 10. <br>For better results we suggest 100 to 200 <code>train_epochs</code>.</font>"
]
},
{
Expand Down
79 changes: 48 additions & 31 deletions examples/3D/01_training.ipynb

Large diffs are not rendered by default.