/
Blind Random Search A much More useful approach now that computation is fast Blind Random Search A much More useful approach now that computation is fast

Blind Random Search A much More useful approach now that computation is fast - PowerPoint Presentation

elizabeth
elizabeth . @elizabeth
Follow
342 views
Uploaded On 2022-07-01

Blind Random Search A much More useful approach now that computation is fast - PPT Presentation

Simple Example Refer to Excel Demo in Class Example blind random parameter search code Conceptual Example Want to go from Arad to Bucharest many ways to go Level 1 choice is Zerind Sibiu Timisoara ID: 928439

search choice level blind choice search blind level states approach state depth arad sag produces node limited zerind cost

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Blind Random Search A much More useful a..." is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Blind Random Search

A much More useful approach now that computation is fast

Slide2

Simple Example

Refer to Excel Demo in Class

Example blind random parameter search code

Slide3

Conceptual Example: Want to go from Arad to Bucharest = many ways to go

Slide4

Level 1 choice is

Zerind

, Sibiu, Timisoara

Slide5

If you went to

Zerind

, then next blind choice would be

Odarea or back to Arad – inefficient you started over – could use this to eliminate that choice – say minimize total path length choice

Slide6

But this is stupid, there are intelligent choices to be made

 but how to you code a machine to do this? Also, in some cases there may not be any information that can be used and you won’t know the “answer” until you found it.

Slide7

Kinds of blind search

strageties

Breadth-First-Search: always returns a solution or failure (this is brute force)

Systematic approach that considers all nodes at level 1, level 2,

etc

Has branching factor complexity every state creates b new states. So level 1 produces b states, and the next level produces b^2 states.

Order is O(

b^d

) where d is the number of states to search

Slide8

Resource Issue – needs to be convolved with human timescales

Slide9

Uniform Cost Search

Like the travelling salesman problem

We want to go from S to G – so, duh, SBG. But in the previous approach, if A is the first node randomly chosen then SAG results – not optimal.

Slide10

Do Cheapest First

Well that cost of SAG is now 11 but S to B to C is 10 which is less than 11

Slide11

Want to get to State L from State A

Slide12

How to Get there? Blind initial choice of B,C,D,E or F

Slide13

Depth First Choice

Slide14

Depth Limited – stop the search after going down X number of depths per node

Slide15

Iterative Deep Searching

Slide16

But if d is not known then don’t do a depth limited search – could go down an infinite branch

Slide17

In all blind searches

You might create the same pathway or choice more than once.

Yet its computationally expensive to store each choice and check if it has already been made.

Slide18