Skip to content

Commit

Permalink
roi task
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Salmon committed Aug 24, 2024
1 parent e798a29 commit b9c2547
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion 02_Noise2Void/solution.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,35 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"task"
]
},
"outputs": [],
"source": [
"# Create a configuration using the helper function\n",
"training_config = create_n2v_configuration(\n",
" experiment_name=\"dl4mia_n2v_sem\",\n",
" data_type=\"tiff\",\n",
" axes=\"YX\",\n",
" patch_size=[64, 64],\n",
" batch_size=128,\n",
" num_epochs=10,\n",
" roi_size=3,\n",
" masked_pixel_percentage=0.05,\n",
" logger=\"tensorboard\"\n",
")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": [
"solution"
]
},
"outputs": [],
"source": [
"# Create a configuration using the helper function\n",
Expand Down

0 comments on commit b9c2547

Please sign in to comment.