Image segmentation with a U-Net-like architecture - Keras Code Examples

preview_player
Показать описание
This video will show you how to use a U-Net style ConvNet to map from a 160x160xRGB image of a PET into the same 160x160 dimensional annotation map of each pixel in the image. This involves segmenting the pet from its border and the background.

Thanks for watching! Please subscribe and check out the rest of the Keras Code Examples playlist!
Рекомендации по теме
Комментарии
Автор

Currently working on my bachelor's thesis using a U-Net. What a coincidence that you post this now... how convenient :D

bogenriederlukas
Автор

Thanks for doing these walkthroughs, very helpful!

jrtapley
Автор

2:38 it's ordering character by character, not treating 100 as one number but as 1-0-0. That's why 100 comes before 2.

tamerius
Автор

Thanks for the video.
There are a few technical points I didn't quite understand. What's the advantage of using the Keras.util.Sequence over tf.data? Is it just the flexibility of doing the loading on your own? From what I've read tf.data outperforms the Sequence approach quite hard. Do you have any preferences for data loading and does it even matter to worry about the data loading specifics in an environment like this one?

Also, what do you think about the use of the Conv2DTranspose layers? As far as I understand, they're usually used for learnable upscaling, whereas here they don't change the layer dimensions.
Are they just a different way of messing with the data to learn more patterns?

One more catch - I've noticed there are two consecutive relu activation layers in the model. Is that a common thing to see?

petrmiculek
Автор

how can I get output like classification? I mean if the U_Net can segment it or not.

arfi_
Автор

Error: ( Unexpected result of `train_function` (Empty logs). Please use `Model.compile(..., run_eagerly=True)`, or for more information of where went wrong, or file a issue/bug to `tf.keras`) How do we solve this?

JoelPrabhod
Автор

So its require a mask image for label? What if with new image input?

jamilal-idrus
Автор

Hi sir, I need ur help in this implementation. Am getting this error ( Unexpected result of `train_function` (Empty logs). Please use `Model.compile(..., run_eagerly=True)`, or for more information of where went wrong, or file a issue/bug to `tf.keras`) How to debug

priyaakr
visit shbcf.ru