Artificial Neural Networks : Solving ODEs and PDEs

Поделиться
HTML-код
  • Опубликовано: 12 янв 2025

Комментарии • 14

  • @martian.07_
    @martian.07_ 3 месяца назад

    Great video, very easy to understand PINNs

  • @sanaullahsaqib2168
    @sanaullahsaqib2168 2 года назад +1

    Why we use ANNs on ODEs.
    What is difference to get Solution from numerical methode and also get the solution from the ANNs. Why we use ANNs ?

  • @Kishan31468
    @Kishan31468 2 года назад

    Neural network for solving ODE is at very nascent stage. There is a lot to do. Numerical methods serve very well as of now. We don't need neural network for that. Can I have your linkedin ID.

  • @ShirshakkPurkayastha
    @ShirshakkPurkayastha 3 года назад +1

    Does the Curse of Dimensionality have any role in restricting the ANN model performance while solving ODEs and PDEs?

    • @EvolutionaryIntelligence
      @EvolutionaryIntelligence  3 года назад

      That depends on the range of values over which you are trying to solve the ODE/PDE. If the ODE/PDE is well behaved, an analysis over a short range of parameter values is sufficient, in which case the dimensionality should not be a problem.

  • @AyushMathur-tu2ms
    @AyushMathur-tu2ms 3 года назад +1

    Are there specific ODE forms which cannot be solved practically using the available techniques or computational limitations in ANN, although the universal approximation theorem may be valid?? Is the curse of dimensionality an issue here?

    • @EvolutionaryIntelligence
      @EvolutionaryIntelligence  3 года назад

      Thats a good question but hard to answer since very limited work has been done on applying ANN for solving ODEs.

  • @aishaummer5817
    @aishaummer5817 3 года назад +1

    simply what does it mean by training a network???plss answer...

    • @EvolutionaryIntelligence
      @EvolutionaryIntelligence  3 года назад

      Watch this video on the Backpropagation algorithm : ruclips.net/video/ntnwjWEpnkk/видео.html

  • @AnirudhKalla
    @AnirudhKalla 3 года назад

    Why don't we minimize the DE and Boundary Conditions separately. In this combined case, we cant actually see which of the two is getting minimized less/more, right?

    • @EvolutionaryIntelligence
      @EvolutionaryIntelligence  3 года назад +1

      How do you minimise them separately? Finally you need a single cost function to be minimised. You can always compute the two terms separately after each forward pass to decide the stopping criterion.

  • @SwadhinAgrawal-ix7xi
    @SwadhinAgrawal-ix7xi 3 года назад

    There can be ODE's with more than one solution, so do we need to train the network that many times? or one training is sufficient?

    • @SwadhinAgrawal-ix7xi
      @SwadhinAgrawal-ix7xi 3 года назад +1

      I think we are training for only a particular solution, so we can't really say that we have solved an ODE

    • @EvolutionaryIntelligence
      @EvolutionaryIntelligence  3 года назад +1

      Yes, with ANN, we are not finding a symbolic solution for the ODE. So we have to specify the initial conditions and we will get the corresponding solution.