251 - Satellite image to maps translation using pix2pix GAN

Поділитися
Вставка
  • Опубліковано 10 гру 2024

КОМЕНТАРІ • 46

  • @Suman-zm7wx
    @Suman-zm7wx 2 роки тому

    I was waiting for this demonstration sir thanks a lot and keep supporting your virtual family 😊😊

  • @aggreym.muhebwa7077
    @aggreym.muhebwa7077 2 роки тому

    Thank you very much for this amazing tutorial. This video has ironed out some of the things i was struggling with for px2pix + satellite imagery.

  • @sandhyapotdar5097
    @sandhyapotdar5097 18 днів тому

    Hello Sreeni
    I am working on 900x1200 dehaze multiview images uisng pix2pix GAN ,However the model needs input size of the images to be 256x256 . So how to handle non squared images divided into 256x256 patches

  • @mager8460
    @mager8460 2 роки тому +1

    Thank you for sharing your treasure!!!
    Why do you keep the BatchNormalization layers to trainable=True in the "define_gan" function?

  • @baghdadiabdellatif1581
    @baghdadiabdellatif1581 2 місяці тому

    Great work 👌👏

  • @aggreym.muhebwa7077
    @aggreym.muhebwa7077 2 роки тому

    Thanks

    • @DigitalSreeni
      @DigitalSreeni  2 роки тому +1

      Thank you very much. Please keep watching.

  • @kaviya1070
    @kaviya1070 9 місяців тому

    I am getting good results while testing from one of the trained samples. Although when I test the model with an entirely new image (one that is not trained as a part of the model), the results are not so convincing. A similar looking image is generated irrespective of the input image. Does anyone know how to solve this?

  • @hh-iq9zk
    @hh-iq9zk Рік тому

    I have a Corona image, only in PAN band, and I would like it to be colorized which is now big issue for me, because there is no colored image to use asa training image. So can I use any PAN image or multiband image from recent Landsats? Thank you

  • @SARAYOGESHTHAKARE
    @SARAYOGESHTHAKARE Рік тому

    Can the same model be used to colorize black and white images?

  • @MACHARLAASMITHA
    @MACHARLAASMITHA 6 місяців тому

    cannot import name 'img_to_array' from 'keras.preprocessing.image ..sir how to solve this error

  • @abhishekkashid4118
    @abhishekkashid4118 Рік тому

    Thanks sir but I have one problem related MAE value,where are we printing MAE value

  • @markadyash
    @markadyash 2 роки тому +1

    Can we use GAN on sound with respective to nyquist condition, so neural network will create new sound using our sound dataset.
    there's a special algorithms for audio but i wanted to make it with image GAN in both we are dealing with number. Is it possible that GAN generated data to be reconstruct in expected output

    • @DigitalSreeni
      @DigitalSreeni  2 роки тому +2

      I am not much familiar with using GAN for audio inputs. Please check out WaveGAN, hopefully the right solution to your question.

  • @sonap7056
    @sonap7056 2 роки тому +2

    Great tutorial sir! I've a doubt. Is this only the training phase? Where is the val folder used?

  • @sneham5727
    @sneham5727 8 місяців тому

    sir,can we use the same code for translating satellite images to optic images

  • @hfarmani
    @hfarmani Рік тому

    thnks many sreeni

  • @Tapan_k
    @Tapan_k Рік тому

    Sir one question, we've downloaded the dataset as a zipped file, and on using that downloaded folder as the path in the code provided, we've been getting an error that says the system cannot find the specified path. How can we overcome this problem?

  • @nikolai1108
    @nikolai1108 2 роки тому +1

    I tried implementing this using UNET quite a while ago, wondering why using a UNET as generator never crossed my mind

  • @sandhyapotdar5097
    @sandhyapotdar5097 18 днів тому

    One more request can you explain related to temporal consistency between multiview images with latest model ?

  • @nandankakadiya1494
    @nandankakadiya1494 2 роки тому

    Amazing tutorial thank you sir keep up the good work

  • @caiyu538
    @caiyu538 2 роки тому

    Thank you for your tutorial. Great.

  • @mmrsagar
    @mmrsagar Рік тому

    Thanks for the detailed explanation.
    Correct me if I am wrong, Your model already started producing very good results only after 10 epochs because you are testing on an input image which was part of training set. I wonder what happens if you use an input image which was not part of training set.

  • @janeriknaess5521
    @janeriknaess5521 2 роки тому

    Great tutorials! I am just finishing up my undergrad in Geomatics Engineering. I was wondering if you could make some videos or point me in the direction of:
    -Adding external data such as radar readings to each pixel to make better use of all spatial data that is available to the user, not just pixels.
    Thanks tons!!

  • @al-yhuwertmurcia743
    @al-yhuwertmurcia743 Рік тому

    Thank you for this channel, it helps a lot!
    I have one question, if the training stops, how to load the saved model and restart training where it was let off?

  • @anujtimsina4446
    @anujtimsina4446 2 роки тому

    Where can we use this concept? Please, Can anybody enlighten me?

  • @tshephomanyothwane1916
    @tshephomanyothwane1916 8 місяців тому

    Thank you for the fruitful video, but when i run the code on the last part I get this error ValueError: When there is only a single output, the `loss_weights` argument must be a Python float. Received instead: loss_weights=[0.5] of type , I tried with jupyter notebook and spyder, with both tiff and png images but i cant get to train , i get the same error. please assist.

    • @rohakabir5356
      @rohakabir5356 8 місяців тому

      i was having same errors, but then i removed loss weights from everywhere ( i'm running on kaggle), this issue got reolved, but now i am facing with some other issue.

  • @tusharjain5467
    @tusharjain5467 2 роки тому

    Amazing tutorial, Thank You Sir
    Sir could you also provide tutorials on Object Detection and Pose Detection using Keras.

  • @shivam4you744
    @shivam4you744 2 роки тому

    Sir why you are focusing more on image related can we follow this series for learning ML????

  • @arthurneuralnetwork3491
    @arthurneuralnetwork3491 2 роки тому

    Thank you for all your great videos !
    I notice that you use Input from tf.keras.models while in previous video it was imported from tf.keras.layers.
    Is there a difference between these 2 imports ?

    • @DigitalSreeni
      @DigitalSreeni  2 роки тому +2

      They are all aliases, I should have stuck with one. I recommend using the ones from here: tf.keras.Input or tf.keras.layers.Input

  • @rekhabar1970
    @rekhabar1970 Рік тому

    hello....your videos are amazing....
    am very new to this
    Could you please let me know why this is happening...?
    cannot import name 'input' from 'keras.models
    how to do it
    Thank you

    • @DigitalSreeni
      @DigitalSreeni  Рік тому +1

      Depends on your keras version Things can move so a quick Google search can help. ANyway, try: from tensorflow.keras.layers import Input

    • @rekhabar1970
      @rekhabar1970 Рік тому

      @@DigitalSreeni ... thank you so much....Sir
      Am watching Your video from beginning....
      So much information....

  • @aryanphilip1527
    @aryanphilip1527 2 роки тому

    Thanks for the video, could you do an image to image translation with a custom dataset. Thanks

    • @DigitalSreeni
      @DigitalSreeni  2 роки тому +1

      This video uses a custom data set, where we download locally and then load it. In my next video I will be using images I collected from a microscope. May be that is what you refer to as 'custom' dataset.

  • @PriyaDas-he4te
    @PriyaDas-he4te 3 місяці тому

    Hey! Your Videos are Amazing. Can you post some Videos On Diffusion.

  • @rishavrajak4381
    @rishavrajak4381 2 роки тому

    Hello sir, Can this pix2pix model be used for multi-class image segmentation?

  • @joafin19
    @joafin19 Рік тому

    The code did not work with the keras == 2.10.0 version or higher. it worked with keras == 2.4.1 version. Thank you for the video. I am learnining a lot.

    • @tshephomanyothwane1916
      @tshephomanyothwane1916 8 місяців тому

      @joafin19 . I am experiencing problems running the code. Especially the training part there is confliction between weights=[0.5] and when I train it says it needs weights as a float. Is it the same problem you experienced?

    • @rohakabir5356
      @rohakabir5356 8 місяців тому

      how do i install this version of keras on kaggle, as it keeps showing dependency issue with tensorflow? what tensorflow did you use?