Cours 4: Réseaux de neurones
R-CNN
digraph {
rankdir=TB;
"Input Image" -> "Selective Search" -> "Crops" -> "Convolutional" -> "Fully connected";
"Input Image" -> "Crops";
}
Fast R-CNN
digraph {
rankdir=TB;
"Input Image" -> "Selective Search" -> "Crops" -> "Fully connected";
"Input Image" -> "Convolutional" -> "Fully connected";
}
Leave a comment