Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bmandracchia committed Aug 26, 2024
1 parent c58a82e commit a9007e1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nbs/04_nets.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@
" if config.backbone == \"xception\":\n",
" self.backbone = Xception(config)\n",
" backbone_out_channels = 2048\n",
" low_level_channels = 128 # This might need adjustment based on your Xception implementation\n",
" low_level_channels = 128 # This might need adjustment based on Xception implementation\n",
" elif config.backbone == \"resnet50\":\n",
" if config.dimensions == 2:\n",
" self.backbone = resnet50(pretrained=True)\n",
Expand Down
2 changes: 1 addition & 1 deletion nbs/05_transforms.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Convert notebook"
"---"
]
},
{
Expand Down
7 changes: 7 additions & 0 deletions nbs/06_metrics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,13 @@
" return area\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---"
]
},
{
"cell_type": "code",
"execution_count": 6,
Expand Down

0 comments on commit a9007e1

Please sign in to comment.