Тёмный

A * ALGORITHM IN ARTIFICIAL INTELLIGENCE WITH EXAMPLE 

Crack Concepts
Подписаться 127 тыс.
Просмотров 141 тыс.
50% 1

This video will clear all your doubts regarding A * algorithm in Artificial Intelligence with examples.

Опубликовано:

 

12 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 41   
@ranupandey3639
@ranupandey3639 4 года назад
Best explanation of A* algo! Thanks ma'am!
@nageswarnandipati682
@nageswarnandipati682 3 года назад
Love the way you explained ! Simple & easily understandable 💟 Within 10 minutes, I came to know what A* Algo is 💟
@Tan-db3qn
@Tan-db3qn 15 дней назад
life saver i watched like 4 videos and none of them made sense came across yours and was saved thank you smmmmm
@sonali9696
@sonali9696 3 года назад
Good explanation and good voice!
@DaltonStephen
@DaltonStephen Год назад
i need a video on how heuristic value is calculated
@factwithhunny078
@factwithhunny078 4 месяца назад
Your voice is mindblowing❤
@tetr4182
@tetr4182 2 года назад
When did you cross S ==> A?
@tsk1217
@tsk1217 6 месяцев назад
she forget to cross the S => A initially , the right time to cross it when you use the S => A and move forward .
@maitryghag6619
@maitryghag6619 3 года назад
Heuristic value please
@applelover4734
@applelover4734 7 месяцев назад
can u teach us react full course with advanced concepts
@poornachander-gq1bz
@poornachander-gq1bz Год назад
thx so much for explaining clearly
@ahmedsarker3555
@ahmedsarker3555 3 года назад
7:09 why didnt we use S->A->D
@gouthamraj3178
@gouthamraj3178 2 года назад
because it is already reached the goal node and it is not the shortest path
@sankard9280
@sankard9280 Год назад
mam here b is already explored na mam so how can we choose s->a->b mam
@afrazhussain3778
@afrazhussain3778 4 месяца назад
good explanation with cool voice
@Husdajukies
@Husdajukies 7 месяцев назад
thank you queen finally I understand
@ashutoshdurgule4011
@ashutoshdurgule4011 Год назад
make videos on Machine learning MU engineering
@hemanthsai905
@hemanthsai905 3 года назад
Thanks for your explanation
@abudimutamba
@abudimutamba 3 года назад
Thank for sharing 🔥
@saeedabdollahi8203
@saeedabdollahi8203 2 года назад
how do you visit a node like B two times?
@ctcrnitv
@ctcrnitv 3 года назад
excellent video, strange name for a computer science youtube channel
@crackconcepts
@crackconcepts 3 года назад
Couldn't come up with a better name 😂
@haeckerzz
@haeckerzz 4 года назад
when you website is coming sadiasiddiqui???
@shaikshaiksha4763
@shaikshaiksha4763 Год назад
How to find heuristic value mam
@sujalbalar316
@sujalbalar316 4 месяца назад
Heuristic values are given
@arduinoide2165
@arduinoide2165 3 года назад
Perfect
@akshaykumar192
@akshaykumar192 Год назад
heristic valuse diya rahta hai kya ?
@sachinpratapsingh2250
@sachinpratapsingh2250 2 года назад
far better than gate smasher
@user-sz1ff5uu6n
@user-sz1ff5uu6n 9 месяцев назад
Thank you so much
@ankitpal8044
@ankitpal8044 3 года назад
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 7 месяцев назад
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)
@keerthigadhanaskaran2752
@keerthigadhanaskaran2752 2 года назад
thank you very helpful
@shannish3947
@shannish3947 2 года назад
good explanation
@umeshgolla2730
@umeshgolla2730 4 года назад
I have been asking you to take a course on alogorithms and database..
@black_godfred
@black_godfred 3 года назад
❤️❤️❤️
@dewmi4403
@dewmi4403 Год назад
I guess you were in PICT
@AliRaza-ei1mt
@AliRaza-ei1mt Год назад
samaj agya
@ionkhan
@ionkhan 4 года назад
we need a complete course you teach better
@agathisekar3112
@agathisekar3112 2 года назад
I need theory part
@godofwar8262
@godofwar8262 2 месяца назад
🏩pink 🤞🏽
Далее
A* Search
12:32
Просмотров 408 тыс.
Depth First Search DFS
8:39
Просмотров 13 тыс.
A* (A Star) Search Algorithm - Computerphile
14:04
Просмотров 1,1 млн