최신 ai 연구동향 - journal-home.s3.ap-northeast-2 [email protected] machine...

24
Kookmin University, Seoul, Korea Jaekoo Lee 1 1 Ph.D., Assistant Professor, School of Software, College of Computer Science [email protected] talk @2020 NetSec-KR 07. 17, 2020 최신 AI 연구 동향

Upload: others

Post on 22-Sep-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

Kookmin University, Seoul, Korea

Jaekoo Lee1

1 Ph.D., Assistant Professor, School of Software, College of Computer Science

[email protected]

talk @2020 NetSec-KR

07. 17, 2020

최신 AI 연구동향

Page 2: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

2

Thank you for your invitation

Page 3: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Introduction

⚫ Background for deep learning

⚫ Research trends in deep learning

⚫ Conclusion

Outline

3

Page 4: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ About me

Jaekoo lee

▪ Kookmin university

▪ Assistant professor, School of software, College of computer science

[email protected]

Machine intelligence (MI) lab.

▪ Our research topics

4

Introduction

Artificial intelligence Machine (deep) learning System (Robot) for intelligence

Bio orhealth-care analysis

IoT (e.g. sensor) analysis

self-driving caror drone

Security

Fun

dam

en

tals

Ap

ps.

Page 5: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Tutorial objectives:

understand fundamentals of deep learning

review of recent research trends in deep learning

motivate to learn recent breakthroughs in deep learning

5

Introduction

Page 6: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

6

Introduction

Page 7: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Artificial intelligence (AI):

the simulation of human intelligence processes by machines (computer systems)

include (major components of AI)

▪ learning (the acquisition of information and rules for using the information),

▪ reasoning (using rules to reach approximate or definite conclusions),

▪ knowledge,

▪ language understanding, and

▪ self-correction

Goal:

▪ A machine that thinks or acts like a human

Introduction

[from https://www.euclidean.com/]

7

Page 8: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ AI in production

Speech recognition

Recommender systems

Autonomous driving

Real-time object recognition

Robotics

Real-time language translation

Many more…

AI systems deployed to billions of users

Introduction

[from https://www.nvidia.com]

8

Page 9: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ A brief timeline of historical events in AI

Introduction

early AI stirs excitement

machine learning begins to flourish

deep learningbreakthroughs drive AI boom

9

Page 10: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Field of artificial intelligence

Background for deep learning

[from book: deep learning @MIT] 10

Page 11: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Basic operation in a node of neural networks

inner product == linear function

activation function == non-linear function

▪ various activation functions

11

Background for deep learning

Page 12: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Structure of neural networks (by using connectionism)

12

Background for deep learning

Page 13: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Zoo of neural networks

13

Background for deep learning

Page 14: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Deep learning

deep neural network with multiple levels of linear / non-linear operations

▪ introducing representation that are expressed in terms of other (simpler) representations

▪ each stage: a kind of trainable feature transform

▪ hierarchy of representations with increasing level of abstraction

learning representation → data-driven features

deep neural network == universal approximator

14

Background for deep learning

Imagepixel → edge → texton→ motif → part → object

Textcharacter → word → word group → clause → sentence → story

Speechsample → spectral band →sound →… → phone →phoneme →word →

Page 15: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Comparisons between traditional machine learning and deep learning

Background for deep learning

15

[from https://verhaert.com]

Page 16: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Training and inference

16

Background for deep learning

Page 17: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Reasons for deep learning's success

⚫ Performance on |data|

Background for deep learning

DNN GPU BIG DATA

17

[from https://www.nvidia.com]

Page 18: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ The power of deep learning

18

Research trends in deep learning

Page 19: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ The power of deep learning (SOTA)

reference from https://paperswithcode.com/sota

20

Research trends in deep learning

Page 20: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ The limits of deep learning

21

Research trends in deep learning

Page 21: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

22

Research trends in deep learning

Page 22: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

23

Research trends in deep learning

Page 23: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ Deep (representation) learning have achieved remarkable improvement

e.g., image recognition, voice assistants, security

⚫ Deep change is started by deep learning!

deep neural network == (linear + nonlinear)*M == universal approximator

change of paradigm → the deep learning revolution

⚫ Deep learning has power and limits

rapidly changing, must stay in tune!!

⚫ AI enabler

Security

26

Conclusion

Page 24: 최신 AI 연구동향 - journal-home.s3.ap-northeast-2 ......jaekoo@kookmin.ac.kr Machine intelligence (MI) lab. Our research topics 4 Introduction Artificial intelligence Machine

⚫ If you have any comments,

suggestions or questions then please do let me know!

⚫ For more information, contact me

[email protected]

Data Science Laboratory (http://data.snu.ac.kr)

Electrical and Computer Engineering

Seoul National University

Question and Answer

27

Thank you ☺