fhatje commited on
Commit
7ffa4f6
·
1 Parent(s): d0a4cec

Removed minor typos

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. app.py +4 -4
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .vscode
app.py CHANGED
@@ -92,13 +92,13 @@ def to_oberlay_image(data):
92
  # %% ../main.ipynb 6
93
  title = "Glomerulus Segmentation"
94
  description = """
95
- A web app, that segments glomeruli in histologic kidney slices!
96
 
97
- The model deployed here is a [UnetPlusPlus](https://arxiv.org/abs/1807.10165) with an [efficientnet-b4](https://arxiv.org/abs/1905.11946) encoder from the [segmentation_models_pytorch](https://github.com/qubvel/segmentation_models.pytorch) library.
98
 
99
- The provided example images are random subset of kidney slices from the [Human Protein Atlas](https://www.proteinatlas.org/). These have been collected separately from model training and have neither been part of the training nor test set.
100
 
101
- Find the corresponding blog post [here](https://www.favianhatje.com).
102
  """
103
  #article="<p style='text-align: center'><a href='Blog post URL' target='_blank'>Blog post</a></p>"
104
  examples = [str(p) for p in get_image_files("example_images")]
 
92
  # %% ../main.ipynb 6
93
  title = "Glomerulus Segmentation"
94
  description = """
95
+ A web app that segments glomeruli in histological kidney slices!
96
 
97
+ The model deployed here is a [UNet++](https://arxiv.org/abs/1807.10165) with an [efficientnet-b4](https://arxiv.org/abs/1905.11946) encoder from the [segmentation_models_pytorch](https://github.com/qubvel/segmentation_models.pytorch) library.
98
 
99
+ The provided example images are random subset of kidney slices from the [Human Protein Atlas](https://www.proteinatlas.org/). These have been collected separately from model training and have neither been part of the training, validation nor test set.
100
 
101
+ See corresponding [blog post](https://fhatje.github.io/posts/glomseg/train_model.html).
102
  """
103
  #article="<p style='text-align: center'><a href='Blog post URL' target='_blank'>Blog post</a></p>"
104
  examples = [str(p) for p in get_image_files("example_images")]