An open API service indexing awesome lists of open source software.

https://github.com/betarixm/csed342

POSTECH: Artificial Intelligence (Spring 2021)
https://github.com/betarixm/csed342

ai artificial-intelligence postech

Last synced: 3 months ago
JSON representation

POSTECH: Artificial Intelligence (Spring 2021)

Awesome Lists containing this project

README

        

# Artificial Intelligence
[![CSED342@POSTECH](https://img.shields.io/badge/CSED342-POSTECH-c80150)](https://www.postech.ac.kr/eng)
[![CSED342@POSTECH](https://img.shields.io/badge/Spring-2021-775E64)](https://www.postech.ac.kr/eng)

**Artificial intelligence** aims to tackle complex real-world problems (e.g., web search, speech recognition, face recognition, machine translation, autonomous driving) with rigorous mathematical tools. In this course, students will learn the foundational principles that drive these applications and practice implementing some of these systems. This course covers a broad range of AI-related topics at a fast pace, focusing on understanding the fundamental concepts and principles on each topic. Accordingly, programming assignments will be implementing the core ideas with native python rather than blindly using AI libraries or tools.
## Assignments
### Foundations
- Simple Python tasks

[Link](HW/HW01)

### Sentiment Analysis
- Stochastic Gradient Descent
- K-means Clustering

[Link](HW/HW02)

### Text Reconstruction
- UCS
- Word Segmentation
- Vowel Insertion
- A* Search

[Link](HW/HW03)

### Peeking Blackjack
- Value Iteration
- Q Learning

[Link](HW/HW04)

### Multi-agent Pac-Man
- Minimax
- Alpha-beta pruning
- Expectimax

[Link](HW/HW05)

### Constraint Satisfaction Problems
- CSP solving
- Handling n-ary factors

[Link](HW/HW06)

### Car Tracking
- Bayesian Network
- Particle Filtering

[Link](HW/HW07)

### From Language to Logic
- Propositional logic
- Logical Inference

[Link](HW/HW08)