A * ALGORITHM IN ARTIFICIAL INTELLIGENCE WITH EXAMPLE

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ม.ค. 2020
  • This video will clear all your doubts regarding A * algorithm in Artificial Intelligence with examples.

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

  • @ranupandey3639
    @ranupandey3639 3 ปีที่แล้ว +9

    Best explanation of A* algo! Thanks ma'am!

  • @nageswarnandipati682
    @nageswarnandipati682 3 ปีที่แล้ว +6

    Love the way you explained ! Simple & easily understandable 💟 Within 10 minutes, I came to know what A* Algo is 💟

  • @sonali9696
    @sonali9696 3 ปีที่แล้ว +15

    Good explanation and good voice!

  • @abudimutamba
    @abudimutamba 2 ปีที่แล้ว +2

    Thank for sharing 🔥

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

    Thanks for your explanation

  • @poornachander-gq1bz
    @poornachander-gq1bz ปีที่แล้ว +1

    thx so much for explaining clearly

  • @user-bc4xl1nj3n
    @user-bc4xl1nj3n 10 หลายเดือนก่อน +5

    i need a video on how heuristic value is calculated

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

    good explanation with cool voice

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

    thank you
    very helpful

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

    thank you queen finally I understand

  • @shannish3947
    @shannish3947 2 ปีที่แล้ว

    good explanation

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

    Perfect

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

    how do you visit a node like B two
    times?

  • @haeckerzz
    @haeckerzz 3 ปีที่แล้ว

    when you website is coming sadiasiddiqui???

  • @ctcrnitv
    @ctcrnitv 3 ปีที่แล้ว

    excellent video, strange name for a computer science youtube channel

    • @crackconcepts
      @crackconcepts  3 ปีที่แล้ว

      Couldn't come up with a better name 😂

  • @user-sz1ff5uu6n
    @user-sz1ff5uu6n 6 หลายเดือนก่อน

    Thank you so much

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

    mam here b is already explored na mam so how can we choose s->a->b mam

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

    make videos on Machine learning MU engineering

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

    can u teach us react full course with advanced concepts

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

    heristic valuse diya rahta hai kya ?

  • @maitryghag6619
    @maitryghag6619 3 ปีที่แล้ว +3

    Heuristic value please

  • @tetr4182
    @tetr4182 ปีที่แล้ว +5

    When did you cross S ==> A?

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

      she forget to cross the S => A initially , the right time to cross it when you use the S => A and move forward .

  • @black_godfred
    @black_godfred 3 ปีที่แล้ว

    ❤️❤️❤️

  • @ahmedsarker3555
    @ahmedsarker3555 2 ปีที่แล้ว +3

    7:09 why didnt we use S->A->D

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

      because it is already reached the goal node and it is not the shortest path

  • @umeshgolla2730
    @umeshgolla2730 4 ปีที่แล้ว

    I have been asking you to take a course on alogorithms and database..

  • @shaikshaiksha4763
    @shaikshaiksha4763 ปีที่แล้ว +2

    How to find heuristic value mam

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

      Heuristic values are given

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

    I have a very urgent doubt please solve it asap
    Iterative A* search and iterative deepning A* search has same algorithm

    • @ankitpal8044
      @ankitpal8044 3 ปีที่แล้ว

      Please solve it 🙏 😔

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

      Iterative A* search and iterative deepening A* search are related concepts, but they are not exactly the same. Let me explain both concepts and provide you with a simple Python implementation for each.
      1. **Iterative A* Search:**
      Iterative A* search is an improvement over the traditional A* search algorithm. A* (A-star) search is a popular graph traversal and pathfinding algorithm that efficiently finds the shortest path between two points on a graph. Iterative A* search is an enhancement to the A* algorithm where it uses an iterative deepening approach to improve its performance.
      Here's a simplified Python implementation of Iterative A* Search:
      ```python
      def iterative_a_star_search(graph, start, goal):
      max_depth = 0
      while True:
      result = a_star_search(graph, start, goal, max_depth)
      if result is not None:
      return result
      max_depth += 1
      def a_star_search(graph, start, goal, max_depth):
      # Your A* search implementation goes here
      # Use max_depth as a limit for the depth of the search
      # Return the result or None if no path is found within the given depth
      # Example usage:
      # result = iterative_a_star_search(graph, start_node, goal_node)
      ```
      2. **Iterative Deepening A* Search:**
      Iterative Deepening A* search is a combination of the Iterative Deepening Depth-First Search (IDDFS) and A* search algorithms. It repeatedly performs depth-limited searches, gradually increasing the depth limit until a solution is found.
      Here's a simplified Python implementation of Iterative Deepening A* Search:
      ```python
      def iterative_deepening_a_star_search(graph, start, goal):
      depth_limit = 0
      while True:
      result = a_star_search(graph, start, goal, depth_limit)
      if result is not None:
      return result
      depth_limit += 1
      def a_star_search(graph, start, goal, depth_limit):
      # Your A* search implementation goes here
      # Use depth_limit as a limit for the depth of the search
      # Return the result or None if no path is found within the given depth
      # Example usage:
      # result = iterative_deepening_a_star_search(graph, start_node, goal_node)

  • @AliRaza-ei1mt
    @AliRaza-ei1mt ปีที่แล้ว

    samaj agya

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

    I need theory part

  • @ionkhan
    @ionkhan 4 ปีที่แล้ว

    we need a complete course you teach better

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

    I guess you were in PICT

  • @sachinpratapsingh2250
    @sachinpratapsingh2250 2 ปีที่แล้ว

    far better than gate smasher