Conversation
| @@ -4,514 +4,281 @@ | |||
| "cell_type": "markdown", | |||
| "metadata": {}, | |||
| "cell_type": "markdown", | ||
| "metadata": {}, | ||
| "source": [ | ||
| "# Informed Search\n", |
| "# Informed Search\n", | ||
| "## Introduction\n", | ||
| "\n", | ||
| "Informed search is an approach to solving problems with a start state to a goal state, that is based on some mathematical concepts that estimate our distance to a goal state and inform us about some of following states. \n", |
There was a problem hiding this comment.
and rewriting an already written notebook made this reviewing process really hard for me, so thx :)))
There was a problem hiding this comment.
can you explain this comment?
did I screw something up with GitHub?
apologies in advance.
| "metadata": {}, | ||
| "source": [ | ||
| "" | ||
| "## A* Search\n", |
There was a problem hiding this comment.
make stronger connections between different parts of your notebook, don't jump from one topic to another make a suitable setup and a solid structure
| "\n", | ||
| "• f(G_2)>f(G) from above\n", | ||
| "In the left diagram, the heuristic’s estimated cost value always (in all states) remains below the true cost value so h is admissible, however, in the right diagram, h sometimes overestimates the real cost value and violates admissibility condition.\n", | ||
| "The second and important condition on heuristic function, is Monotonicity or also called consistency. A heuristic function h(n) is monotonic, is consistent if, for every node n and every successor of n generated by any action a, the estimated cost of reaching the goal from n is no greater than the step cost of getting to plus the estimated cost of reaching the goal from n':\n", |
There was a problem hiding this comment.
review your grammar (for example the second and important)
| "\n", | ||
| "\n", | ||
| "" | ||
| ] |
There was a problem hiding this comment.
write a brief conclusion or a summary as your outro :))
| "\n", | ||
| "" | ||
| ] | ||
| }, |
| @@ -4,514 +4,281 @@ | |||
| "cell_type": "markdown", | |||
| "\n", | ||
| "" | ||
| ] | ||
| }, |
There was a problem hiding this comment.
Also a "other useful links" section can be helpful
|
Edited and uploaded index.md |
No description provided.