일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- gcp
- SageMaker
- GDG Campus
- Backend.AI
- BOAZ
- re:Invent
- Conference
- 스터디 잼
- 코딩테스트
- Ground Truth
- Community Day
- seq2seq
- API
- CSIP
- 오픈소스해커톤
- SW중심대학
- Qwik Start
- Speech
- Tensorflow 2.0
- 구글스타트업캠퍼스
- 뉴비톤
- 머신러닝
- entity
- Open Hack
- rl
- aws
- OPENHACK
- 해커톤
- ainize
- kakao
Archives
- Today
- Total
pizzaplanet
Tree Search 본문
Search Example: Romania
위와 같은 그래프가 있다. Start state는 Ared, Goal state는 Bucharest이다.
이 그래프를 참조하여 트리를 이용해 Ared to Bucharest 길찾기를 해보자.
이제부터 나올 포스팅은 프로그래머의 시선에서 위 그림처럼 트리노드를 확장해 나가는 것을 어떻게 구현할 것인지 생각을 해보며 진행 될 것이다.
General Tree Search
Important ideas
Fringe: 방문하지 않은 노드를 쌓을 공간
Expansion: 꺼낸걸 확장시켜 프린지에 집어 넣음
Exploration strategy: 프린지에서 어느 것을 꺼낼 건지
Example: Tree Search
'Univ. > Artificial intelligence lecture' 카테고리의 다른 글
너비 우선탐색 Breadth-First Search(BFS) (0) | 2018.04.24 |
---|---|
깊이 우선 탐색 Depth-First Search(DFS) (0) | 2018.04.24 |
State Space Graphs vs. Search Trees (0) | 2018.04.15 |
Search Problems (0) | 2018.04.05 |
Agents (0) | 2018.04.04 |
Comments