Greedy Best First Search-Artificial Intelligence-Unit - 1 -Problem Solving -Informed Searching

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ค. 2021
  • Unit - 1 - Problem Solving
    Informed Searching Strategies - Greedy Best First Search
    Greedy best-first search algorithm always selects the path which appears best at that moment.
    It is the combination of depth-first search and breadth-first search algorithms.
    It uses the heuristic function and search.
    With the help of best-first search, at each step, we can choose the most promising node.
    In the best first search algorithm, we expand the node which is closest to the goal node and the minimum cost is estimated by heuristic function
    The evaluation function is f(n) = h(n)
    Were, h(n)= estimated cost from node n to the goal.
    Greedy search ignores the cost of the path that has already been traversed to reach n
    Therefore, the solution given is not necessarily optimal
    Greedy best-first search can start down an infinite path and never return to try other possibilities, it is incomplete
    Because of its greediness the search makes choices that can lead to a dead end; then one backs up in the search tree to the deepest unexpanded node
    Greedy best-first search resembles depth-first search in the way it prefers to follow a single path all the way to the goal, but will back up when it hits a dead end
    The quality of the heuristic function determines the practical usability of greedy search
    Greedy search is not optimal
    Greedy search is incomplete without systematic checking of repeated states.
    In the worst case, the Time and Space Complexity of Greedy Search are both O( b m ),
    Where
    b is the branching factor and
    m the maximum path length
    Subscribe this channel, comment and share with your friends.
    For Syllabus, Text Books, Materials and Previous University Question Papers and important questions
    Follow me on
    Blog : dsumathi.blogspot.com/
    Facebook Page : profile.php?...
    Instagram : / dsumathiphd

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

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

    shouldn't we include A's h(n) values why summing up at end?

  • @rashidpathan6998
    @rashidpathan6998 4 วันที่ผ่านมา +1

    you should have made tree first

  • @Mexton-qs5td
    @Mexton-qs5td 11 หลายเดือนก่อน +4

    personally i have really enjoyed this class, u made it so easy for me to understand,thank you

    • @WinningCSE
      @WinningCSE  6 หลายเดือนก่อน +2

      You're very welcome!

  • @balachandar375
    @balachandar375 6 หลายเดือนก่อน +4

    how to find the cost between start A to B,C,E,asking about the values 118,140,75 how did it came??

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

      That was already given in the question itself. It is basically cost between each node. If you calculate that you will get the total cost and if you calculate the heuristic value you will get the total distance so we are finding the optimal solution with help of either characteristic value or cost value. Anyhow, this algorithm is not optimal and it is prone to getting struck.

  • @Lee-uw6lr
    @Lee-uw6lr 6 หลายเดือนก่อน +3

    Why will GBFS back up if it meets a dead end? Then how will GBFS get stuck in a loop then? I hope you can answer my question

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

      bro it will back up only when we use Depth first search (DFS) in greedy best first search.

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

    Very Nice

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

      Thanks for sharing!!

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

    Thanks

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

      You are welcome Melih Ekinci

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

    thank u very much man u r the best

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

      Thank you Nikash Yadav.

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

    Good work, well explained, keep doing

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

      Thank you, I will

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

      Thanks, will do!

  • @LectureofIslam-lb3iw
    @LectureofIslam-lb3iw 7 หลายเดือนก่อน +1

    I need this slide please send me

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

    good but
    better to explain the calculation of h(n)

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

      Thank you

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

      Sorry for that

  • @5it.005
    @5it.005 2 ปีที่แล้ว

    thank yo

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

      You are welcome, keep watching...

    • @5it.005
      @5it.005 2 ปีที่แล้ว

      @@WinningCSE where can i find branch and bound lecture ☹

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

      @@5it.005 Branch and bound. Ok

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

      I will try to do this. Which university you are

    • @5it.005
      @5it.005 2 ปีที่แล้ว +1

      @@WinningCSE first thank so much ☹❤❤ i rlly value it cuz i get ur explaining v well 💕

  • @037edattabhavani4
    @037edattabhavani4 3 หลายเดือนก่อน +1

    is best first search and greedy search is same or different?

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

      Both are different

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

    What happens if two nodes have the same heuristic value?

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

      While implementing this, we found that it takes the first one.

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

      @@WinningCSE How can I get in contact with you, I would like your assistance on some AI questions (Informed search and uninformed search).

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

    Madam Is This Table Will Give In Exam Section??

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

      If it is problem then surely they will give, otherwise if you asked to explain the topic with your own example, then you have to draw the table.

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

    You make things complicated

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

    caste ki baat mat kr aunty

  • @satheeshk6861
    @satheeshk6861 7 หลายเดือนก่อน +2

    Talk louder your voice is not audible

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

      Ok next time

    • @jtdatacomparisons
      @jtdatacomparisons 3 หลายเดือนก่อน +7

      you dont got volume button ?

  • @rashidpathan6998
    @rashidpathan6998 4 วันที่ผ่านมา +1

    worst example of the life

    • @WinningCSE
      @WinningCSE  12 ชั่วโมงที่ผ่านมา

      Thank you

  • @rashidpathan6998
    @rashidpathan6998 4 วันที่ผ่านมา

    i do not recommend you

    • @WinningCSE
      @WinningCSE  12 ชั่วโมงที่ผ่านมา +1

      Thank you 🙏