Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로그래머스
- 피로그래밍
- Python
- 멋쟁이사자처럼
- objectdetection
- 백준
- jwt
- S3
- yolov5
- 면접전형
- EC2
- 사물인식
- 합격후기
- 솝트
- 인공지능
- CRUD
- AWS
- nodejs
- 절차지향
- 솝트 후기
- 페이지네이션
- jQuery
- 파이썬 #백준 #BFS
- MongoDB
- 서류전형
- spring-boot
- 파이썬
- 카카오
- 멋사
- Java
Archives
- Today
- Total
찔끔찔끔씩😎
[인공지능] 인공지능 개론 본문
728x90
인공지능, Artificial Intelligence
🔎 인공지능?
Computer systems that can demonstrate human-level intelligence and replace human intellectual labout인공적으로, 즉 사람에 의해 만들어진 지능적인 시스템,사람의 지능적인 활동을 대신할 수 있는 컴퓨터 시스템이다.
🔎 머신러닝 Machine Learning ?
Computers learn from their past experience
Adapt to new environments or tasks
AI Agents
🔎AI Agents ?
Views of AI fall into four categories
Humanly |
Rationally : 주어진 정보기반 최적의 결론 |
|
Cognitive model | Thinking humanly | Thinking rationally |
Active model | Acting humanly | Acting rationally (가장 많은 비중) |
🔎 PEAS ?
Performance measure
Environment
Actuators
Sensors
- Example1 : Agent = taxi driver
- Performance measure: Safe, fast, legal
- Environment: Roads, traffic
- Actuators: Steering wheel, accelerator
- Sensors: Cameras, sonar, speedometer, GPS
- Example2 : Agent = Medical diagnosis
- Performance measure: Healthy patient, minimize costs, lawsuits
- Environment: Patient, hospital, staff
- Actuators: Screen display (questions, tests, diagnoses, treatments, referrals)
- Sensors: Keyboard (entry of symptoms, findings, patient's answers)
Environment types
- Fully observable vs Partially observable
- Fully observable: 전체 볼수 있나
- Partially observable: 부분적으로 볼 수 있나
- Deterministic vs Stochastic vs Strategic
- Deterministic: 현재 상태에 따라 다음상태가 결정되는 경우
- Strategic: agent 가 action을 취했을 때 다음 상태가 완전히 결정되는 경우
- Episodic vs Sequential
- Episodic: 다음에 영향을 미치지 않는 경우
- Static vs Dynamic
- Static: 변하지 않는 경우
- Dynamic: 환경이 계속 변하는 경우
- Single agent vs Multi agent
AI Systems: agents
An agent is anything that can be viewed as perceiving its environment through sensors
and acting upon that environment through actuators
=> sensors 를 통해서 환경을 감지하고, actuators를 통해 action을 취한다.
🔎 Agents and environments
agent = architecture + program
🔎 Agent types, Agent 종류
- Table Driven agents
- Simple reflex agents
- 과거 까지 다 보긴 힘드니까, 센서로 들어온 애만 판단
- Model-based reflex agents
- 주어진 정보를 기반으로, 청소(action)를 하면 그 위치를 체크하는 등, 환경을 modeling 한다. 얼마나 변했나.
- Goal-based agents
- 모델링 + 목표
- Utility-based agents
- 모델링 + 목표 + 효율성
- Learning agent
- 모델링 + 목표 + 효율성 + 경험
'Study > 인공지능' 카테고리의 다른 글
[인공지능] Supervised Learning, Unsupervised Learning (0) | 2022.06.05 |
---|---|
[Yolov5] 자율주행 데이터 사물인식 실습 (0) | 2022.05.16 |
[Yolov5] Yolo를 이용한 Object Detection (0) | 2022.05.16 |
[CNN] 합성곱 신경망 (Convolutional Neural Network) (0) | 2022.05.16 |
Comments