stem/AI/Neural Networks/CNN/FCN/FCN.md
andy 1c441487f9 vault backup: 2023-06-02 17:17:29
Affected files:
.obsidian/workspace-mobile.json
.obsidian/workspace.json
Lab/Scratch Domain.md
Money/Econ.md
STEM/AI/Classification/Classification.md
STEM/AI/Classification/README.md
STEM/AI/Classification/Supervised.md
STEM/AI/Neural Networks/CNN/Examples.md
STEM/AI/Neural Networks/CNN/FCN/FCN.md
STEM/AI/Neural Networks/CNN/FCN/FlowNet.md
STEM/AI/Neural Networks/CV/Filters.md
STEM/img/coordinate-change.png
STEM/img/gaussian-class.png
Tattoo/Engineering.md
Want.md
2023-06-02 17:17:29 +01:00

979 B

Fully Convolutional Network

Convolutional Layer and UpConv with Activation Functions#ReLu but no others (pooling)

  • All some sort of Encoder-Decoder

Contractive → UpConv

Image Segmentation

  • For visual output
    • Previously image \rightarrow vector
  • Additional layers to up-sample representation to an image

!fcn-uses.png

!fcn-arch.png

Training

  • Rarely from scratch
  • Pre-trained weights
  • Replace final layers
    • MLP layers
    • White-noise initialised
  • Add upconv layer(s)
    • Fine-tune train
    • Freeze others
    • Annotated GT images
  • Can use summed per-pixel log Deep Learning#Loss Function

Evaluation

fcn-eval

  • SDS
    • Classical method
    • 52% mAP
  • FCN
    • 62% mAP
  • Intersection over Union
    • IOU
    • Jaccard
    • Averaged over all images
    • J(A,B)=\frac{|A\cap B|}{|A\cup B|}