Unlocking the Future: How to Predict Weather with LSTM

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ธ.ค. 2024

ความคิดเห็น • 50

  • @parisahormozzade
    @parisahormozzade 10 หลายเดือนก่อน +4

    the only video that makes me understand this concept; thanks for sharing :)

    • @geodev
      @geodev  9 หลายเดือนก่อน +1

      You're very welcome!

  • @aradhanarana9592
    @aradhanarana9592 4 หลายเดือนก่อน +1

    Finally understood multivariate Time series in LSTM. Thanks. Very nice and informative video 👏

    • @geodev
      @geodev  4 หลายเดือนก่อน

      Glad it was helpful!

  • @gordemn
    @gordemn หลายเดือนก่อน

    thank you brother, you're a god amongst men

  • @anaisana6474
    @anaisana6474 2 หลายเดือนก่อน +1

    At 18:43 , don't we have a dataleak ? for example we use index values 1 to 10 to predict value 11.
    After we use the value 11 to predict the value 12. So we used a futur value to predict the value 12 and not the predicted value 11, so the model corrects itself ? Or is it not the cas and we use predicted values as input values to predict the next futur values (in that cas it is not a data leak) ?

  • @johnnysmith6876
    @johnnysmith6876 6 หลายเดือนก่อน +1

    Thanks! Very good video 💯

    • @geodev
      @geodev  6 หลายเดือนก่อน

      Glad it was helpful!

  • @lalitb
    @lalitb ปีที่แล้ว +1

    Thank you for sharing this good piece of materials with us dai

    • @geodev
      @geodev  ปีที่แล้ว

      You are welcome vai❤️

  • @adedoyinsamuelajeyomi6040
    @adedoyinsamuelajeyomi6040 ปีที่แล้ว +1

    Welldone Tek 👏

    • @geodev
      @geodev  ปีที่แล้ว

      Thank you 🙌

  • @RafaelRivetti
    @RafaelRivetti 4 หลายเดือนก่อน +1

    In the MLP network, data from independent variables from date t are used to predict a future value t+n. In the LSTM network, instead of using only data from time t of the independent variables, it uses data from time t, t-1, t-2, ..., t-n as desired by the programmer, and after that, generates the prediction for a future time t+n? Is this reasoning correct? Thank you very much!

    • @geodev
      @geodev  4 หลายเดือนก่อน

      Yes, that's correct.

  • @AGnanaprakasam
    @AGnanaprakasam 9 หลายเดือนก่อน +1

    Can I use the R2 value to measure the accuracy of the LSTM model in time series prediction?

  • @mateoconcha
    @mateoconcha 4 หลายเดือนก่อน

    Hi! Excelent video! How you can apply the model with new data, i mean when you have new variables without the temperature values. You would like to predict the new (future) temperature values? I hope you can help me with this. Thanks!

  • @manojkumar-cm2ym
    @manojkumar-cm2ym 6 หลายเดือนก่อน

    Nice Explanation about the multivariable input LSTM. I have an enquiry if given multiple numbers rows including target variable (or every feature has multiple values) at a particular time (t1). Then how to handle these cases in sequences and labels

  • @pbhowes
    @pbhowes 9 หลายเดือนก่อน +2

    It looks like the prediction is worse than a simple model that says "the temperature tomorrow will be the same as the temperature today". In both cases, when there is a sudden temperature change, there is a one day lag between the actual and predicted temp. In other words, it is not really much of a prediction! Or have I missed something?

    • @marcoschapira6759
      @marcoschapira6759 9 หลายเดือนก่อน

      you can predict further into the future than one day

  • @desrtrose21000
    @desrtrose21000 19 วันที่ผ่านมา

    amazing.

  • @fedawak
    @fedawak 4 หลายเดือนก่อน

    nice bro can you show us how to forecast or predict weather using LSTM and CNN( Hybrid model) and show us important points to consider in order to successfully achieve the project.

  • @IAKhan-km4ph
    @IAKhan-km4ph 3 หลายเดือนก่อน

    Good work

    • @geodev
      @geodev  3 หลายเดือนก่อน

      Thank you! Cheers!

  • @nhatthang64
    @nhatthang64 10 หลายเดือนก่อน +1

    love thiss tysm!!

    • @geodev
      @geodev  9 หลายเดือนก่อน

      So glad!

  • @lokeshkumar1365
    @lokeshkumar1365 4 หลายเดือนก่อน

    Can you share any code/video for multivariate and multistep forecast using LSTM?

  • @fedawak
    @fedawak 4 หลายเดือนก่อน

    what tools are very important for weather forecasting ?

  • @shilpachakraborty1940
    @shilpachakraborty1940 4 หลายเดือนก่อน +1

    I have problem when creating sequence showing keyError. How to slove it?

    • @geodev
      @geodev  4 หลายเดือนก่อน

      Without the full error log, I can't say anything. Also, from which line are you getting the error?

  • @utnapishtim307
    @utnapishtim307 9 หลายเดือนก่อน

    Hello teacher! Do you have in mind to record a video teaching how to make forecast about drought using Google Earth Engine?

  • @TheSerbes
    @TheSerbes 2 หลายเดือนก่อน

    Why don't you select the parameters? I have 15 parameters and I need to select the most important ones. How can I do this?

  • @huuduc0505
    @huuduc0505 4 หลายเดือนก่อน +1

    How can I control forecast time in future ?

    • @geodev
      @geodev  4 หลายเดือนก่อน

      Using the previous days forcast, you can predict future.

  • @novandc9223
    @novandc9223 ปีที่แล้ว +1

    ao you have 9 features included temperature. and the target feature is temperature ?

    • @geodev
      @geodev  ปีที่แล้ว

      Yes that's correct. The idea of lstm weather prediction is, based on the historical weather pattern, we can predict the current or future weather

    • @edopriyoutomo4565
      @edopriyoutomo4565 10 หลายเดือนก่อน

      @@geodev Where is the code that shows the target value of the temperature variable?, I tried to change the actual values from true_temp to true fog, the graph results are still the same. Thank you

  • @ramyapragada4530
    @ramyapragada4530 10 หลายเดือนก่อน

    Can anyone say, where is best weight function

  • @fathymohamed4312
    @fathymohamed4312 7 หลายเดือนก่อน

    Could u tell me what is the best Library for deep learning to learn

    • @geodev
      @geodev  7 หลายเดือนก่อน

      Tensorflow and pytorch are the most popular libraries in Python.

    • @fathymohamed4312
      @fathymohamed4312 7 หลายเดือนก่อน

      @@geodev could u plz make a video about ML project from extract values in arc pro till end

  • @nigoclassic911
    @nigoclassic911 9 หลายเดือนก่อน

    Hello...
    Can I have private chat with you on LSTM and CNN... Am comparing the two in predicting Cassava yield

  • @dabhivrushank3242
    @dabhivrushank3242 11 หลายเดือนก่อน

    can you provide the best model weight?
    by the very helpful video❤

    • @geodev
      @geodev  11 หลายเดือนก่อน

      Hi, I am sorry, I already deleted the best model weight. But definitely you can train this model in Google Colab since it doesn't take much time to train the model.

  • @sudurbhattarai8454
    @sudurbhattarai8454 ปีที่แล้ว +1

    Dai aba ML and Data Science for Atmospheric Remote Sensing ...ma mentoring garnu peryo :D

    • @geodev
      @geodev  ปีที่แล้ว

      It is on my list vai, stay tuned! For now, I am creating content related to data preparation and image segmentation!

  • @Gobi20343
    @Gobi20343 ปีที่แล้ว +1

    Could you send the code

    • @geodev
      @geodev  ปีที่แล้ว

      You can get the code in the video description!

  • @LuuPham
    @LuuPham 6 หลายเดือนก่อน

    Quá hay

  • @MohammedHAzeez
    @MohammedHAzeez 4 หลายเดือนก่อน +1

    I am very grateful for this comprehensive explanation. I have some questions. Could you please get your email?

    • @geodev
      @geodev  4 หลายเดือนก่อน

      You can get my email in my channel description.