Skip to content
This repository was archived by the owner on Oct 18, 2022. It is now read-only.

Fix typo on string 107. Plus some minor proposals #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
- train_segmentation.py # Step 2, segmentation with UNet Model
- model_UNet.py # UNet model definition

- train_classificaion.py # Step 3, classificaiton with VGG/Inception/ResNet/DenseNet
- train_classification.py # Step 3, classification with VGG/Inception/ResNet/DenseNet
- model_VGG.py # VGG model definition
- model_Inception.py # Inception model definition
- model_ResNet.py # ResNet model definition
Expand All @@ -44,7 +44,7 @@
- regions
- closing
- dilation
- collect all meta information(seriesuid, shape, file_path, origin, spacing, coordinates, cover_ratio, etc.) and store in **ONE** cache file for fast training init.
- collect all meta information (seriesuid, shape, file_path, origin, spacing, coordinates, cover_ratio, etc.) and store in **ONE** cache file for fast training init.
- see preprocessing in `/train_ipynbs/preprocess.ipynb` file

Distribution of the lung part takes on a whole CT.
Expand Down Expand Up @@ -104,7 +104,7 @@ Pictures tells that: **hyperparameter tunning really matters**.

- `DenseNet` draws tons of experience from origin paper. [https://arxiv.org/abs/1608.06993](https://arxiv.org/abs/1608.06993)
- 3 dense\_block with 5 bn\_relu\_conv layers according to paper.
- transition\_block after every dense\_block, expcet the last one.
- transition\_block after every dense\_block, except the last one.
- Optional config for **DenseNet-BC**(paper called it): **1\*1\*1 depth-size seperable conv**, and **transition_block compression**.

<img src='./assets/DenseNet.png'>
Expand Down