andy
23991f92c9
Affected files: .obsidian/app.json .obsidian/workspace-mobile.json .obsidian/workspace.json Events/🪣🪣🪣.md STEM/AI/Neural Networks/CNN/FCN/README.md STEM/AI/Neural Networks/CNN/GAN/README.md STEM/AI/Neural Networks/CNN/README.md STEM/AI/Neural Networks/MLP/README.md STEM/AI/Neural Networks/README.md STEM/AI/Neural Networks/RNN/README.md STEM/AI/Neural Networks/SLP/README.md STEM/AI/Neural Networks/Transformers/README.md Untitled.canvas |
||
---|---|---|
.. | ||
FCN.md | ||
FlowNet.md | ||
Highway Networks.md | ||
README.md | ||
ResNet.md | ||
Skip Connections.md | ||
Super-Resolution.md |
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
- Previously image
- Additional layers to up-sample representation to an image
- Up-convolutional
- De-convolutional
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
- 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|}