SlideShare ist ein Scribd-Unternehmen logo
1 von 39
Downloaden Sie, um offline zu lesen
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
한국어를 위한
AWS 인공지능(AI) 서비스 소개 및 활용 방법
강정희 AWS 솔루션즈 아키텍트
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
목차
• Why AI/ML in Language?
• AWS의 인공지능 언어 서비스
• Amazon ML Stack
• AI Speech 서비스
• AI Language 서비스
• 서비스 연동 및 활용 사례
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Why AI/ML in Language?
Artificial Intelligence & Machine Learning
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
언어 데이터 처리의 중요성
음성 데이터
• 고객 지원 센터
• 각종 회의, 미팅
영상 데이터
• TV 방송
• 온-디맨드 비디오
• 소셜 미디어
최근 디지털 데이터의 증가 수준은 전례가 없을 정도로 폭발적입니다.
특히, ‘언어’와 관련된 음성/영상 데이터의 비중은 더욱 커지고 있습니다.
Deloitte Insights: https://www2.deloitte.com/insights/us/en/focus/tech-trends/2017/dark-data-analyzing-unstructured-data.html
“In 2020,
the digital universe is
expected to reach
44 zettabytes”
- Deloitte Insights
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
자연어 처리의 어려움 - 복잡한 처리 과정
Image Source: http://magizbox.com/training/natural_language_processing/site/tasks.html
자연어 처리(NLP)는 언어학의 개념과 깊은 연관성을 지니고 있으며,
다양하고 복잡한 과정으로 구성되어 있습니다.
• 음성 인식 (음운론)
Speech-to-Text
Text-to-speech
• 형태소 분석 (형태론)
동의어, 동음이의어 처리
중의성 해소
신조어, 미등록어 판별 및 등록
• 구문 분석 (통사론, 의미론)
문법 기반 구조 분석
맥락 기반 추론
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
음성 인식의 어려움 - 하나만 놓고 보면 쉬울까요?
• 높은 노이즈
• 대화 상의 artifacts와 뉘앙스(nuance)
• 화자가 여럿일 경우
• 처음 접하는 용어들
• 방언, 사투리 처리
• 활용 사례가 적은 언어 또는 은어 처리
자연어 처리의 한 분야인 음성 인식(ASR Automatic Speech Recognition)에서
특히 해결이 쉽지 않은 문제들로 어떤 것들이 있을까요?
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
인식 이후의 텍스트 분석 과정은 더 복잡합니다.
“My compliments on the very rapid
road openings in New York following
Hurricane Sandy”
Entity: Location -> City
Entity: Hurricane Sandy
Sentiment: positive Language: English
또, 수없이 쏟아지는 텍스트에 대해서도 빠르게 파악하고 이해해야 합니다.
이를 위해서는 어떤 것들을 해결해야 할까요?
• 고유명사 구분 및 추출 (NER)
• 언어에 대한 자동 인식
• 핵심 키워드 파악 및 문서 요약
• 텍스트의 성향 분석
감성 분석
의도 분석, 오피니언 마이닝
• 맥락 기반 추론
• 시간 흐름에 따른 변화 내역 추적
• 지능형 질의 응답
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
다양한 언어 지원의 어려움 - 여기서 끝이 아닙니다.
APAC :
e-Commerce회사의
글로벌 확장 시도
EUROPE :
여행사 웹사이트에서
외국어로 작성된
고객 리뷰 검토
LATIN AMERICA :
금융 서비스 회사에서
수십 만건의 뉴스를 제공
한편, 전세계의 많은 사람들은 대부분 하나의 언어만 구사합니다.
이런 경우에는 또 어떤 어려움이 있을까요?
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
새로운 인공지능 기술을 활용한 자연어 처리의 발전
새로운 AI/ML 기술의 적용을 통해 자연어 처리 분야에서는
큰 변화와 혁신이 일어나고 있습니다.
특히, Machine Translation 분야의 성과를 주목할 필요가 있습니다.
기존 방식: Data-driven technology
• 과거 최소 30년 전부터 시도되어 온 방법
• 전문 번역가를 통해 만들어진 고품질의 샘플 데이터
확보가 중요
• 대단히 많은 샘플 데이터 확보가 요구됨
• Rule-based Machine Translation
언어학을 기반으로 한 룰(Rule)을 이용하여
입력 언어에 대한 출력 언어 번역 결과를 생성
• Statistical Machine Translation
말뭉치(Corpus)를 기반으로 한 통계 모델을 이용하여
입력 언어에 대한 출력 언어 번역 결과를 생성
최근 방식: Neural technology
• Deep Neural Architecture를 이용
• 전체 입력 문장 단위로 어떻게 번역할 것인지 모델링
• 어순, 단어의 의미 (중의성), 문맥 파악 등이 반영됨
• 데이터의 희박성을 극복
• 언어간의 교차 지식도 활용 가능
• 주요 알고리즘
Encoder-Decoder model
Bi-directional RNN (Recurrent Neural Network)
Sequence-to-sequence (seq2seq)
GAN-NMT
CNN (Convolutional Neural Networks)
. . .
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
하지만 누구에게나 머신러닝이 쉽지만은 않습니다.
이렇게 뛰어난 기술 발전에도 불구하고
여전히 AI/ML은 다가가기 어려운 영역일 수 있습니다.
왜 그럴까요..?
학습용 데이터셋이 없어요 데이터 과학자, 머신 러닝 전문가가 없어요.
컴퓨팅 리소스가 부족해요
지금 비즈니스에서 UX를 향상시키고 싶은데
시스템 API 개발만 가능해요
머신 러닝 같은 거 잘 몰라도
그냥 바로 쓸 수 있는 건 없나요?
모든 걸 직접 만들려고 하니
엄두가 안나요
Image source: https://en.wikipedia.org/wiki/The_Scream
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS의 인공지능 언어 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon ML Stack – 쉽게 적용하는 AI 서비스
M L F R A M E W O R K S &
I N F R A S T R U C T U R E
A I S E R V I C E S
R E K O G N I T I O N
I M A G E
P O L L Y T R A N S C R I B E T R A N S L A T E C O M P R E H E N D L E XR E K O G N I T I O N
V I D E O
Vision Speech Language Chatbots
A M A Z O N
S A G E M A K E R
B U I L D T R A I N
F O R E C A S T
Forecasting
T E X T R A C T P E R S O N A L I Z E
Recommendations
D E P L O Y
Pre-built algorithms & notebooks
Data labeling (GROUND TRUTH)
One-click model training & tuning
Optimization (N E O )
One-click deployment & hosting
M L S E R V I C E S
F r a m e w o r k s I n t e r f a c e s I n f r a s t r u c t u r e
EC2 P3
&
P3DN
EC2 C5 FPGAs GREENGRASS ELASTIC
INFERENCE
Reinforcement learningAlgorithms & models
(AWS MARKETPLACE FOR MACHINE LEARNING)
(App developers with
little knowledge of ML)
(ML developers and
data scientists)
(ML researchers and
academics)
INFERENTIA
언어 서비스문서 인식 (+a)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AI Speech
서비스
AI Vision
서비스
AI Language
서비스
AWS의 인공지능 언어 서비스
문자음성
비디오음성 파일
언어
의미
이미지
다른 언어
데이터
번역
사람
대화
문자음성음성인식(STT)
Text to Speech
문서 데이터
문자 데이터
음성 데이터
문자 인식(OCR) 문서 인식(OCR+)
자연어 처리
(감정/구문 분석, 엔터티 인식…)
Lex
Comprehend
Translate
Rekognition Textract
Transcribe
Polly
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS의 인공지능 언어 서비스
AI Speech 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon Polly
• 다양한 국가의 언어 지원 (한국어: 서연)
• SSML(Speech Synthesis Markup Language)
 W3C 표준에 기반하여 의미적 음성 합성
마크업 언어인 SSML 1.1 지원
 음성 속도, 볼륨, 피치, 끊어 읽기 등 다양한
표현 지원
 AWS에서 자체적으로 지정한 추가 기능도
지원
• 변환된 음성 파일의 자유로운 저장,
재생, 배포 가능
음성 합성 (TTS, text-to-speech) 서비스
AI Speech 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon Polly – Customer cases
Amazon Polly가
조선일보 뉴스를 들려드립니다
노컷뉴스, 기사 읽어주는
음성 서비스 ‘노보(NOVO)’ 론칭
AI Speech 서비스
음성 합성
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon Transcribe
음성 인식
https://aws.amazon.com/ko/blogs/korea/generating-automatic-caption-with-amazon-transcribe/
음성 입력 정보에 대한 스크립트를 자동으로 생성해내는
완전 관리형 음성 인식 (ASR) 서비스
Amazon
Transcribe
고객에 대한 인사이트
글로벌 서비스
맞춤형 광고
아카이브 검색
서비스 확장 (수요 증가)
“Amazon Transcribe를 이용한 자동 자막 생성하기”
AI Speech 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon Transcribe
음성 인식
- AWS Console 기반 - AWS CLI/SDK 기반
transcribe.start_transcription_job(
TranscriptionJobName='transcribe-demo',
Media={'MediaFileUri':
'https://s3-us-east-1.amazonaws.com/transcribe-
demo/demo.wav'},
MediaFormat='wav',
LanguageCode='en-US',
MediaSampleRateHertz=16000
)
Amazon Transcribe에서 제공하는 다양한 인터페이스를 통해
목적에 맞춰 편리하게 음성-텍스트 변환 작업을 수행할 수 있습니다.
AI Speech 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
§ Hello/
Hola
Amazon
S3
Amazon Transcribe는 다양한 기능과 특징을 통해
더 현실적이고 효용성 높은 음성-텍스트 변환 결과를 제공합니다.
일반 음성 데이터,
(낮은 음질의)
전화 음성 데이터
모두 지원
타임스탬프
Confidence
score
문장부호 반영,
문장 스타일링
영어, 스페인어,
프랑스어, 이탈리아어
지원
(향후 지속적인 확대)
S3와
손쉬운
통합
다자간 대화 시
화자(speaker)별
추적
맞춤형 어휘집
구축 제공
Amazon Transcribe
음성 인식
AI Speech 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS의 인공지능 언어 서비스
AI Language (+Chatbots) 서비스
+
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon Comprehend
자연어 처리
감정 분석 엔티티 추출 언어 핵심 문구 주제 모델링
POWERED BY
DEEP LEARNING
�
Amazon Comprehend는 Deep Learning 기반의 NLP 엔진이 탑재된
완전 관리형 AWS의 자연 언어 처리 서비스 입니다.
AI Language 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon Comprehend
자연어 처리
A m a z o n . c o m , I n c . i s l o c a t e d i n
S e a t t l e , W A a n d w a s f o u n d e d J u l y
5 t h , 1 9 9 4 b y J e f f B e z o s . O u r
c u s t o m e r s l o v e b u y i n g e v e r y t h i n g f r o m
b o o k s t o b l e n d e r s a t g r e a t p r i c e s
Document Topic Proportion
Doc.txt 0 .89
Doc.txt 1 .67
Doc.txt 2 .91
Topic Term Weight
0 Washington .89
1 Silicon Valley .67
2 Roasting .91
Keywords Topic Groups Document Relationship to Topics
TOPIC MODELING
Named Entities
• Amazon.com : Organization
• Seattle, WA : Location
• July 5th, 1994 : Date
• Jeff Bezos : Person
Key Phrases
• Our customers
• books
• blenders
• great prices
Sentiment
• Positive
Language
• English
AI Language 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon Comprehend – Customer cases
자연어 처리
ClearView Social
Amazon Comprehend 기반 소셜 공유 효과 측정
☛ at AWS Machine Learning Blog
Tag Heatmap
(from Amazon Comprehend)
Smart Chat App categorizing topics in real-time
(conversation-aware chat room)
☛ at PubNub Tech blog
AI Language 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon Translate
번역
• 글로벌 확장을 위한 필수 요소
• 다양한 활용 사례를 통한 대규모 처리
"Amazon Web Services is a collection of cloud computing services"
“Amazon Web Services es una colección de servicios de computación en la nube”
Context aware: knows not to
translate “Amazon” to
“Amazonas“ (Amazon Jungle)
Learns to re-order words &
phrases according to the
grammar of each language
Neural Architecture
• Encoder-Decoder
• Convolutional
• Transformer
• …
Amazon Translate는 높은 퀄리티로 다양한 언어에 대해
대량의 컨텐트 번역, 실시간 번역을 제공하는
완전 관리형 Neural Machine Translation 서비스입니다.
AI Language 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
대용량 컨텐트
번역
실시간 번역
총 21개 언어에 대해
번역 서비스 제공
번역 대상 언어
자동 탐지
Amazon Translate는
다음과 같은 주요 기능을 제공하며
한국어를 포함한 21개 언어, 417개 조합의 번역을 지원합니다.
Arabic, Chinese, French,
German, Portuguese, Spanish …
Amazon Translate
번역
AI Language 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon Translate - 주요 활용 사례
Twitch 스트리밍 텍스트 데이터의 실시간 번역
AI Language 서비스
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
텍스트 및 음성 이해 : Amazon Alexa와 같은 기술 기반
엔터프라이즈 SaaS 커넥터 제공: 엔터프라이즈 시스템 연동
대화형 서비스 구축을 위한 직관적인 도구 제공
지속적인 학습: 봇을 모니터링하고 개선
한 번의 Build로 다양한 플랫폼에 적용
Amazon Lex
Chatbot
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Amazon Lex - 적용 기술 및 서비스
Chatbot
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
정보봇 서비스
모든 고객의 매일 일상적 질의에 대한 챗봇 서비스
어플리케이션 봇
모바일 어플리케이션에 강력한 인터페이스 연계
• 뉴스 업데이트
• 날씨 정보
• 스포츠 경기 스코어
• 티켓예약
• 식사 주문
• 은행 계좌 관리 등
기업 생산성 봇
기업의 업무에서 생산성 향상과 업무 과정상에 지원
• 매출 확인
• 마케팅 상황/결과
• 실시간 재고 파악
봇
디바이스 상호 작용에서 인터페이스를 통한 대화 컨트롤 가능
• 웨어러블
• 원격 어플리케이션
• 자동화
Amazon Lex – 사용 예시
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
서비스 연동과 활용 사례
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Pairing Amazon ML Services
AWS에서 제공하는 ML 관련 서비스들을 서로 연동시켜서
더 다양한 분야에 폭넓게 적용시킬 수 있습니다.
Amazon
Comprehend
Amazon
Transcribe
Amazon
Lex
Amazon
Connect
Amazon
Translate
Amazon
Transcribe
Amazon
Translate
Amazon
Comprehend
Amazon
Rekognition
Amazon
Transcribe
Amazon
Connect
Amazon
Transcribe
…
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Vision 서비스를 활용한 문서 데이터 활용
문자음성
비디오음성 파일
언어
의미
이미지
다른 언어
데이터
번역
사람
대화
음성음성인식(STT)
Text to Speech
문서 데이터
문자 데이터
음성 데이터
문자 인식(OCR) 문서 인식(OCR+)
자연어 처리
(감정/구문 분석, 엔터티 인식…)
Comprehend
Translate
Textract
예시 :
• Amazon Comprehend
• 도서 태깅, 설문지를 통한 고객 피드백 분석
• Amazon Comprehend Medical : 의료문서 분석
• Amazon Translate
• 영문 서적 스캔 본 자동 번역
• Amazon Polly : 동화책 읽어주는 로봇
Amazon Textract를 활용하면 이미지 로부터
문서(문자) 데이터를 추출하여 필요한 언어
기능을 적용하여 새로운 인사이트를 얻을 수
있습니다.
Polly
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Textract Reference architecture—Extract for NLP
Quickly turn extracted text/data into actionable insights
Input
Uploaded document
images of medical
notes, explanation of
benefits, and
patient forms
Amazon S3
Uploaded documents
are stored in S3
NLP
Use natural language
processing to extract
insights from
medical documents
Amazon
Elasticsearch
Service
Easily search through
extracted data and
text insights
Output
Discover medical
insights to improve
patient care
Amazon Textract
Automatically extract
words and lines of
text, and tables
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
번역 서비스를 중심으로 언어 지원 확대
문자음성
비디오음성 파일
언어
의미
이미지
다른 언어
데이터
번역
사람
대화
음성음성인식(STT)
Text to Speech
문서 데이터
문자 데이터
음성 데이터
문자 인식(OCR) 문서 인식(OCR+)
자연어 처리
(감정/구문 분석, 엔터티 인식…)
Lex
Comprehend
Translate
Textract
예시 :
• Amazon Comprehend
• 각국 소셜 미디어, 뉴스 동향 분석
• 글로벌 e-commerce 고객 후기 분석
• Amazon Transcribe
• 해외 연사 강연 시 동시 번역기
Amazon Translate를 중심으로 현재 한국어 등
특정 언어를 지원하지 않는 서비스 기능을 활용할
수 있습니다.
Transcribe
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Demo : Serverless Subtitles
https://github.com/awslabs/serverless-subtitles
• 동영상이 업로드 되면 자동으로 자막을
생성(Transcribe)하고, 각 언어 별 자막을
제공하는(Translate) 서버리스 애플리케이션
* 예제는 한글 지원을 하지 않으나 간단히 코드에
언어 코드(“ko”)를 수정하여 구성 가능
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
정리하면…
• AWS AI 언어 서비스를 활용하면 많은 인공지능 기술이나 인력 없이도
손쉽게 자연어 처리 기능을 활용 하실 수 있습니다.
• AWS에서 제공하는 ML 관련 서비스들을 서로 연동시켜서 더 다양한 분야에
폭넓게 적용시킬 수 있습니다.
• Amazon Textract를 활용하면 이미지 로부터 문서(문자) 데이터를 추출하여
필요한 언어 기능을 적용하여 새로운 인사이트를 얻을 수 있습니다.
• Amazon Translate를 중심으로 현재 한국어 등 특정 언어를 지원하지 않는
서비스 기능을 활용할 수 있습니다.
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
기계학습(Machine Learning)을 위해
AWS를 선택해야 하는 이유
데모 존
실제 사용 환경에서
기계학습의 사용방법을
살펴보세요
AWS 기반 머신러닝
https://aws.amazon.com/
machine-learning/
전문가에게 물어보세요
AWS 전문가가 질문에
답변드립니다
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS 전문가로부터 기술과 지식을 습득하고,
AWS 클라우드와 함께 미래를 설계하세요
클라우드 역량을 개발할 준비가 되셨다면
https://www.aws.training/ 을 방문하세요!
온라인 교육
AWS 전문가가 진행하는
무료 온라인 교육 과정
강의식 교육
AWS 공인 강사가 진행하는
오프라인 교육 과정
AWS 자격증
클라우드 전문성 입증을 위한
업계에서 인정 받는
AWS 공인 자격증
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS Innovate 에 참석해주셔서 대단히 감사합니다.
저희가 준비한 내용, 어떻게 보셨나요?
더 나은 세미나를 위하여 설문을 꼭 작성해 주시기 바랍니다.
aws-korea-marketing@amazon.com
twitter.com/AWSKorea
facebook.com/amazonwebservices.ko
youtube.com/user/AWSKorea
slideshare.net/awskorea
twitch.tv/aws

Weitere ähnliche Inhalte

Was ist angesagt?

SplunkLive! Data Models 101
SplunkLive! Data Models 101SplunkLive! Data Models 101
SplunkLive! Data Models 101Splunk
 
Amazon GuardDuty: Intelligent Threat Detection and Continuous Monitoring to P...
Amazon GuardDuty: Intelligent Threat Detection and Continuous Monitoring to P...Amazon GuardDuty: Intelligent Threat Detection and Continuous Monitoring to P...
Amazon GuardDuty: Intelligent Threat Detection and Continuous Monitoring to P...Amazon Web Services
 
놀면 뭐하니? 같이 개인 방송 서비스 만들어보자! - 김승준 현륜식 AWS 솔루션즈 아키텍트 :: AWS Summit Seoul 2021
놀면 뭐하니? 같이 개인 방송 서비스 만들어보자! - 김승준 현륜식 AWS 솔루션즈 아키텍트 :: AWS Summit Seoul 2021놀면 뭐하니? 같이 개인 방송 서비스 만들어보자! - 김승준 현륜식 AWS 솔루션즈 아키텍트 :: AWS Summit Seoul 2021
놀면 뭐하니? 같이 개인 방송 서비스 만들어보자! - 김승준 현륜식 AWS 솔루션즈 아키텍트 :: AWS Summit Seoul 2021Amazon Web Services Korea
 
Google Cloud Fundamentals
Google Cloud Fundamentals Google Cloud Fundamentals
Google Cloud Fundamentals Omar Fathy
 
Serverless Computing: build and run applications without thinking about servers
Serverless Computing: build and run applications without thinking about serversServerless Computing: build and run applications without thinking about servers
Serverless Computing: build and run applications without thinking about serversAmazon Web Services
 
[Azure Governance] Lesson 4 : Azure Policy
[Azure Governance] Lesson 4 : Azure Policy[Azure Governance] Lesson 4 : Azure Policy
[Azure Governance] Lesson 4 : Azure Policy☁ Hicham KADIRI ☁
 
How Vanguard and Bloomberg Use AWS PrivateLink (NET323) - AWS re:Invent 2018
How Vanguard and Bloomberg Use AWS PrivateLink (NET323) - AWS re:Invent 2018How Vanguard and Bloomberg Use AWS PrivateLink (NET323) - AWS re:Invent 2018
How Vanguard and Bloomberg Use AWS PrivateLink (NET323) - AWS re:Invent 2018Amazon Web Services
 
AWS vs Azure - Cloud Services Comparison
AWS vs Azure - Cloud Services ComparisonAWS vs Azure - Cloud Services Comparison
AWS vs Azure - Cloud Services ComparisonAniket Kanitkar
 
"FinOps and its role in Arity / Allstate" - Mike Rosenberg at the Chicago AWS...
"FinOps and its role in Arity / Allstate" - Mike Rosenberg at the Chicago AWS..."FinOps and its role in Arity / Allstate" - Mike Rosenberg at the Chicago AWS...
"FinOps and its role in Arity / Allstate" - Mike Rosenberg at the Chicago AWS...AWS Chicago
 
"Introduction to FinOps" – Greg VanderWel at Chicago AWS user group
"Introduction to FinOps" – Greg VanderWel at Chicago AWS user group"Introduction to FinOps" – Greg VanderWel at Chicago AWS user group
"Introduction to FinOps" – Greg VanderWel at Chicago AWS user groupAWS Chicago
 
Track 3 Session 4_企業工作負載遷移至 AWS 的最佳實踐
Track 3 Session 4_企業工作負載遷移至 AWS 的最佳實踐Track 3 Session 4_企業工作負載遷移至 AWS 的最佳實踐
Track 3 Session 4_企業工作負載遷移至 AWS 的最佳實踐Amazon Web Services
 
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...Amazon Web Services Korea
 
Azure architecture
Azure architectureAzure architecture
Azure architectureAmal Dev
 
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance Seminar
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance SeminarAWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance Seminar
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance SeminarAmazon Web Services Korea
 

Was ist angesagt? (20)

SplunkLive! Data Models 101
SplunkLive! Data Models 101SplunkLive! Data Models 101
SplunkLive! Data Models 101
 
Amazon GuardDuty: Intelligent Threat Detection and Continuous Monitoring to P...
Amazon GuardDuty: Intelligent Threat Detection and Continuous Monitoring to P...Amazon GuardDuty: Intelligent Threat Detection and Continuous Monitoring to P...
Amazon GuardDuty: Intelligent Threat Detection and Continuous Monitoring to P...
 
Building a Data Lake on AWS
Building a Data Lake on AWSBuilding a Data Lake on AWS
Building a Data Lake on AWS
 
놀면 뭐하니? 같이 개인 방송 서비스 만들어보자! - 김승준 현륜식 AWS 솔루션즈 아키텍트 :: AWS Summit Seoul 2021
놀면 뭐하니? 같이 개인 방송 서비스 만들어보자! - 김승준 현륜식 AWS 솔루션즈 아키텍트 :: AWS Summit Seoul 2021놀면 뭐하니? 같이 개인 방송 서비스 만들어보자! - 김승준 현륜식 AWS 솔루션즈 아키텍트 :: AWS Summit Seoul 2021
놀면 뭐하니? 같이 개인 방송 서비스 만들어보자! - 김승준 현륜식 AWS 솔루션즈 아키텍트 :: AWS Summit Seoul 2021
 
Azure migration
Azure migrationAzure migration
Azure migration
 
AWS Cloud trail
AWS Cloud trailAWS Cloud trail
AWS Cloud trail
 
Google Cloud Fundamentals
Google Cloud Fundamentals Google Cloud Fundamentals
Google Cloud Fundamentals
 
AWS networking fundamentals
AWS networking fundamentalsAWS networking fundamentals
AWS networking fundamentals
 
Aws VPC
Aws VPCAws VPC
Aws VPC
 
Serverless Computing: build and run applications without thinking about servers
Serverless Computing: build and run applications without thinking about serversServerless Computing: build and run applications without thinking about servers
Serverless Computing: build and run applications without thinking about servers
 
[Azure Governance] Lesson 4 : Azure Policy
[Azure Governance] Lesson 4 : Azure Policy[Azure Governance] Lesson 4 : Azure Policy
[Azure Governance] Lesson 4 : Azure Policy
 
How Vanguard and Bloomberg Use AWS PrivateLink (NET323) - AWS re:Invent 2018
How Vanguard and Bloomberg Use AWS PrivateLink (NET323) - AWS re:Invent 2018How Vanguard and Bloomberg Use AWS PrivateLink (NET323) - AWS re:Invent 2018
How Vanguard and Bloomberg Use AWS PrivateLink (NET323) - AWS re:Invent 2018
 
AWS vs Azure - Cloud Services Comparison
AWS vs Azure - Cloud Services ComparisonAWS vs Azure - Cloud Services Comparison
AWS vs Azure - Cloud Services Comparison
 
"FinOps and its role in Arity / Allstate" - Mike Rosenberg at the Chicago AWS...
"FinOps and its role in Arity / Allstate" - Mike Rosenberg at the Chicago AWS..."FinOps and its role in Arity / Allstate" - Mike Rosenberg at the Chicago AWS...
"FinOps and its role in Arity / Allstate" - Mike Rosenberg at the Chicago AWS...
 
"Introduction to FinOps" – Greg VanderWel at Chicago AWS user group
"Introduction to FinOps" – Greg VanderWel at Chicago AWS user group"Introduction to FinOps" – Greg VanderWel at Chicago AWS user group
"Introduction to FinOps" – Greg VanderWel at Chicago AWS user group
 
Track 3 Session 4_企業工作負載遷移至 AWS 的最佳實踐
Track 3 Session 4_企業工作負載遷移至 AWS 的最佳實踐Track 3 Session 4_企業工作負載遷移至 AWS 的最佳實踐
Track 3 Session 4_企業工作負載遷移至 AWS 的最佳實踐
 
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
 
Aws ppt
Aws pptAws ppt
Aws ppt
 
Azure architecture
Azure architectureAzure architecture
Azure architecture
 
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance Seminar
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance SeminarAWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance Seminar
AWS Security 솔루션 자세히 살펴보기 :: 신용녀 :: AWS Finance Seminar
 

Ähnlich wie 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희 솔루션즈 아키텍트, AWS :: AWS Innovate 2019

[AWS Innovate 온라인 컨퍼런스] 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희, AWS 솔루션즈 아키텍트
[AWS Innovate 온라인 컨퍼런스] 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희, AWS 솔루션즈 아키텍트[AWS Innovate 온라인 컨퍼런스] 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희, AWS 솔루션즈 아키텍트
[AWS Innovate 온라인 컨퍼런스] 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희, AWS 솔루션즈 아키텍트Amazon Web Services Korea
 
AWS CLOUD 2018-AWS의 새로운 언어, 음성, 텍스트 처리 인공지능 서비스 (남궁영환 솔루션즈 아키텍트)
AWS CLOUD 2018-AWS의 새로운 언어, 음성, 텍스트 처리 인공지능 서비스 (남궁영환 솔루션즈 아키텍트)AWS CLOUD 2018-AWS의 새로운 언어, 음성, 텍스트 처리 인공지능 서비스 (남궁영환 솔루션즈 아키텍트)
AWS CLOUD 2018-AWS의 새로운 언어, 음성, 텍스트 처리 인공지능 서비스 (남궁영환 솔루션즈 아키텍트)Amazon Web Services Korea
 
AWS Finance Symposium_Fintech을 넘어서서 AI/Machine Learning 금융으로
AWS Finance Symposium_Fintech을 넘어서서 AI/Machine Learning 금융으로AWS Finance Symposium_Fintech을 넘어서서 AI/Machine Learning 금융으로
AWS Finance Symposium_Fintech을 넘어서서 AI/Machine Learning 금융으로Amazon Web Services Korea
 
인공지능 / 기계학습 기반의 디지털 트랜스포메이션 및 글로벌 사례 - 김선수 사업개발 담당, AWS / 정진환 팀장, SK텔레콤 / 구태훈...
인공지능 / 기계학습 기반의 디지털 트랜스포메이션 및 글로벌 사례 - 김선수 사업개발 담당, AWS / 정진환 팀장, SK텔레콤 / 구태훈...인공지능 / 기계학습 기반의 디지털 트랜스포메이션 및 글로벌 사례 - 김선수 사업개발 담당, AWS / 정진환 팀장, SK텔레콤 / 구태훈...
인공지능 / 기계학습 기반의 디지털 트랜스포메이션 및 글로벌 사례 - 김선수 사업개발 담당, AWS / 정진환 팀장, SK텔레콤 / 구태훈...Amazon Web Services Korea
 
New SAP on AWS : AI 서비스로 SAP 비즈니스 프로세스를 자동화하기 - 이상규 (AWS 파트너 솔루션즈 아키텍트)
New SAP on AWS : AI 서비스로 SAP 비즈니스 프로세스를 자동화하기 - 이상규 (AWS 파트너 솔루션즈 아키텍트)New SAP on AWS : AI 서비스로 SAP 비즈니스 프로세스를 자동화하기 - 이상규 (AWS 파트너 솔루션즈 아키텍트)
New SAP on AWS : AI 서비스로 SAP 비즈니스 프로세스를 자동화하기 - 이상규 (AWS 파트너 솔루션즈 아키텍트)Amazon Web Services Korea
 
AWS re:Invent 2018를 통해 본 개발자들이 원하는 4가지 클라우드 동향 :: 윤석찬 - AWS Community Day 2019
AWS re:Invent 2018를 통해 본 개발자들이 원하는 4가지 클라우드 동향 :: 윤석찬 - AWS Community Day 2019 AWS re:Invent 2018를 통해 본 개발자들이 원하는 4가지 클라우드 동향 :: 윤석찬 - AWS Community Day 2019
AWS re:Invent 2018를 통해 본 개발자들이 원하는 4가지 클라우드 동향 :: 윤석찬 - AWS Community Day 2019 AWSKRUG - AWS한국사용자모임
 
Amazon AI 및 IoT를 통한 비즈니스 혁신 - AWS Summit Seoul 2017
Amazon AI 및 IoT를 통한 비즈니스 혁신 - AWS Summit Seoul 2017Amazon AI 및 IoT를 통한 비즈니스 혁신 - AWS Summit Seoul 2017
Amazon AI 및 IoT를 통한 비즈니스 혁신 - AWS Summit Seoul 2017Amazon Web Services Korea
 
Amazon AI 서비스를 통한 스마트 애플리케이션 개발 - AWS Summit Seoul 2017
Amazon AI 서비스를 통한 스마트 애플리케이션 개발 - AWS Summit Seoul 2017Amazon AI 서비스를 통한 스마트 애플리케이션 개발 - AWS Summit Seoul 2017
Amazon AI 서비스를 통한 스마트 애플리케이션 개발 - AWS Summit Seoul 2017Amazon Web Services Korea
 
[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...
[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...
[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...AWS Korea 금융산업팀
 
세션 1: Non-IT 비즈니스를 위한 Digital Transformation 전략
세션 1: Non-IT 비즈니스를 위한 Digital Transformation 전략세션 1: Non-IT 비즈니스를 위한 Digital Transformation 전략
세션 1: Non-IT 비즈니스를 위한 Digital Transformation 전략Amazon Web Services Korea
 
제조업의 AI/ML 고객 사례::남궁영환::AWS Summit Seoul 2018
제조업의 AI/ML 고객 사례::남궁영환::AWS Summit Seoul 2018제조업의 AI/ML 고객 사례::남궁영환::AWS Summit Seoul 2018
제조업의 AI/ML 고객 사례::남궁영환::AWS Summit Seoul 2018Amazon Web Services Korea
 
AWS Amplify를 이용한 웹과 모바일 간의 쉬운 데이터 동기화 및 AI 서비스를 활용한 모바일 개발 - 정창호, AWS 솔루션즈 아키...
AWS Amplify를 이용한 웹과 모바일 간의 쉬운 데이터 동기화 및 AI 서비스를 활용한 모바일 개발 - 정창호, AWS 솔루션즈 아키...AWS Amplify를 이용한 웹과 모바일 간의 쉬운 데이터 동기화 및 AI 서비스를 활용한 모바일 개발 - 정창호, AWS 솔루션즈 아키...
AWS Amplify를 이용한 웹과 모바일 간의 쉬운 데이터 동기화 및 AI 서비스를 활용한 모바일 개발 - 정창호, AWS 솔루션즈 아키...Amazon Web Services Korea
 
E-Commerce 를 풍성하게 해주는 AWS 기술들 - 서호석 이사, YOUNGWOO DIGITAL :: AWS Summit Seoul ...
E-Commerce 를 풍성하게 해주는 AWS 기술들 - 서호석 이사, YOUNGWOO DIGITAL :: AWS Summit Seoul ...E-Commerce 를 풍성하게 해주는 AWS 기술들 - 서호석 이사, YOUNGWOO DIGITAL :: AWS Summit Seoul ...
E-Commerce 를 풍성하게 해주는 AWS 기술들 - 서호석 이사, YOUNGWOO DIGITAL :: AWS Summit Seoul ...Amazon Web Services Korea
 
개발자를 위한 클라우드 기술 트렌드- 윤석찬, AWS 테크에반젤리스트 :: Hello T 개발자 컨퍼런스
개발자를 위한 클라우드 기술 트렌드- 윤석찬, AWS 테크에반젤리스트 :: Hello T 개발자 컨퍼런스개발자를 위한 클라우드 기술 트렌드- 윤석찬, AWS 테크에반젤리스트 :: Hello T 개발자 컨퍼런스
개발자를 위한 클라우드 기술 트렌드- 윤석찬, AWS 테크에반젤리스트 :: Hello T 개발자 컨퍼런스Amazon Web Services Korea
 
[MINDsLab]maum.ai platform_Introduction_20230220.pdf
[MINDsLab]maum.ai platform_Introduction_20230220.pdf[MINDsLab]maum.ai platform_Introduction_20230220.pdf
[MINDsLab]maum.ai platform_Introduction_20230220.pdfTaejoon Yoo
 
GS Neotek aws_Amazon_CloudFrontDay2018_session5
GS Neotek aws_Amazon_CloudFrontDay2018_session5GS Neotek aws_Amazon_CloudFrontDay2018_session5
GS Neotek aws_Amazon_CloudFrontDay2018_session5GS Neotek
 
4시간안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성 - 최지웅 부대표, 오픈소스컨설팅 :: AWS Summit Seoul 2019
4시간안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성 - 최지웅 부대표, 오픈소스컨설팅 :: AWS Summit Seoul 20194시간안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성 - 최지웅 부대표, 오픈소스컨설팅 :: AWS Summit Seoul 2019
4시간안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성 - 최지웅 부대표, 오픈소스컨설팅 :: AWS Summit Seoul 2019Amazon Web Services Korea
 
4시간 안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성_최지웅_오픈소스컨설팅
4시간 안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성_최지웅_오픈소스컨설팅4시간 안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성_최지웅_오픈소스컨설팅
4시간 안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성_최지웅_오픈소스컨설팅Open Source Consulting
 
[AWS Dev Day] 이머징 테크 | AWS AI 서비스로 SAP 비지니스 프로세스 자동화하기 - 이상규 AWS 솔루션즈 아키텍트, 이...
[AWS Dev Day] 이머징 테크 | AWS AI 서비스로 SAP 비지니스 프로세스 자동화하기 - 이상규 AWS 솔루션즈 아키텍트, 이...[AWS Dev Day] 이머징 테크 | AWS AI 서비스로 SAP 비지니스 프로세스 자동화하기 - 이상규 AWS 솔루션즈 아키텍트, 이...
[AWS Dev Day] 이머징 테크 | AWS AI 서비스로 SAP 비지니스 프로세스 자동화하기 - 이상규 AWS 솔루션즈 아키텍트, 이...Amazon Web Services Korea
 
AWS builders industry edition : 인공지능과 클라우드를 통한 고객 관리 변화
AWS builders industry edition : 인공지능과 클라우드를 통한 고객 관리 변화AWS builders industry edition : 인공지능과 클라우드를 통한 고객 관리 변화
AWS builders industry edition : 인공지능과 클라우드를 통한 고객 관리 변화Amazon Web Services Korea
 

Ähnlich wie 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희 솔루션즈 아키텍트, AWS :: AWS Innovate 2019 (20)

[AWS Innovate 온라인 컨퍼런스] 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희, AWS 솔루션즈 아키텍트
[AWS Innovate 온라인 컨퍼런스] 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희, AWS 솔루션즈 아키텍트[AWS Innovate 온라인 컨퍼런스] 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희, AWS 솔루션즈 아키텍트
[AWS Innovate 온라인 컨퍼런스] 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희, AWS 솔루션즈 아키텍트
 
AWS CLOUD 2018-AWS의 새로운 언어, 음성, 텍스트 처리 인공지능 서비스 (남궁영환 솔루션즈 아키텍트)
AWS CLOUD 2018-AWS의 새로운 언어, 음성, 텍스트 처리 인공지능 서비스 (남궁영환 솔루션즈 아키텍트)AWS CLOUD 2018-AWS의 새로운 언어, 음성, 텍스트 처리 인공지능 서비스 (남궁영환 솔루션즈 아키텍트)
AWS CLOUD 2018-AWS의 새로운 언어, 음성, 텍스트 처리 인공지능 서비스 (남궁영환 솔루션즈 아키텍트)
 
AWS Finance Symposium_Fintech을 넘어서서 AI/Machine Learning 금융으로
AWS Finance Symposium_Fintech을 넘어서서 AI/Machine Learning 금융으로AWS Finance Symposium_Fintech을 넘어서서 AI/Machine Learning 금융으로
AWS Finance Symposium_Fintech을 넘어서서 AI/Machine Learning 금융으로
 
인공지능 / 기계학습 기반의 디지털 트랜스포메이션 및 글로벌 사례 - 김선수 사업개발 담당, AWS / 정진환 팀장, SK텔레콤 / 구태훈...
인공지능 / 기계학습 기반의 디지털 트랜스포메이션 및 글로벌 사례 - 김선수 사업개발 담당, AWS / 정진환 팀장, SK텔레콤 / 구태훈...인공지능 / 기계학습 기반의 디지털 트랜스포메이션 및 글로벌 사례 - 김선수 사업개발 담당, AWS / 정진환 팀장, SK텔레콤 / 구태훈...
인공지능 / 기계학습 기반의 디지털 트랜스포메이션 및 글로벌 사례 - 김선수 사업개발 담당, AWS / 정진환 팀장, SK텔레콤 / 구태훈...
 
New SAP on AWS : AI 서비스로 SAP 비즈니스 프로세스를 자동화하기 - 이상규 (AWS 파트너 솔루션즈 아키텍트)
New SAP on AWS : AI 서비스로 SAP 비즈니스 프로세스를 자동화하기 - 이상규 (AWS 파트너 솔루션즈 아키텍트)New SAP on AWS : AI 서비스로 SAP 비즈니스 프로세스를 자동화하기 - 이상규 (AWS 파트너 솔루션즈 아키텍트)
New SAP on AWS : AI 서비스로 SAP 비즈니스 프로세스를 자동화하기 - 이상규 (AWS 파트너 솔루션즈 아키텍트)
 
AWS re:Invent 2018를 통해 본 개발자들이 원하는 4가지 클라우드 동향 :: 윤석찬 - AWS Community Day 2019
AWS re:Invent 2018를 통해 본 개발자들이 원하는 4가지 클라우드 동향 :: 윤석찬 - AWS Community Day 2019 AWS re:Invent 2018를 통해 본 개발자들이 원하는 4가지 클라우드 동향 :: 윤석찬 - AWS Community Day 2019
AWS re:Invent 2018를 통해 본 개발자들이 원하는 4가지 클라우드 동향 :: 윤석찬 - AWS Community Day 2019
 
Amazon AI 및 IoT를 통한 비즈니스 혁신 - AWS Summit Seoul 2017
Amazon AI 및 IoT를 통한 비즈니스 혁신 - AWS Summit Seoul 2017Amazon AI 및 IoT를 통한 비즈니스 혁신 - AWS Summit Seoul 2017
Amazon AI 및 IoT를 통한 비즈니스 혁신 - AWS Summit Seoul 2017
 
Amazon AI 서비스를 통한 스마트 애플리케이션 개발 - AWS Summit Seoul 2017
Amazon AI 서비스를 통한 스마트 애플리케이션 개발 - AWS Summit Seoul 2017Amazon AI 서비스를 통한 스마트 애플리케이션 개발 - AWS Summit Seoul 2017
Amazon AI 서비스를 통한 스마트 애플리케이션 개발 - AWS Summit Seoul 2017
 
[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...
[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...
[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...
 
세션 1: Non-IT 비즈니스를 위한 Digital Transformation 전략
세션 1: Non-IT 비즈니스를 위한 Digital Transformation 전략세션 1: Non-IT 비즈니스를 위한 Digital Transformation 전략
세션 1: Non-IT 비즈니스를 위한 Digital Transformation 전략
 
제조업의 AI/ML 고객 사례::남궁영환::AWS Summit Seoul 2018
제조업의 AI/ML 고객 사례::남궁영환::AWS Summit Seoul 2018제조업의 AI/ML 고객 사례::남궁영환::AWS Summit Seoul 2018
제조업의 AI/ML 고객 사례::남궁영환::AWS Summit Seoul 2018
 
AWS Amplify를 이용한 웹과 모바일 간의 쉬운 데이터 동기화 및 AI 서비스를 활용한 모바일 개발 - 정창호, AWS 솔루션즈 아키...
AWS Amplify를 이용한 웹과 모바일 간의 쉬운 데이터 동기화 및 AI 서비스를 활용한 모바일 개발 - 정창호, AWS 솔루션즈 아키...AWS Amplify를 이용한 웹과 모바일 간의 쉬운 데이터 동기화 및 AI 서비스를 활용한 모바일 개발 - 정창호, AWS 솔루션즈 아키...
AWS Amplify를 이용한 웹과 모바일 간의 쉬운 데이터 동기화 및 AI 서비스를 활용한 모바일 개발 - 정창호, AWS 솔루션즈 아키...
 
E-Commerce 를 풍성하게 해주는 AWS 기술들 - 서호석 이사, YOUNGWOO DIGITAL :: AWS Summit Seoul ...
E-Commerce 를 풍성하게 해주는 AWS 기술들 - 서호석 이사, YOUNGWOO DIGITAL :: AWS Summit Seoul ...E-Commerce 를 풍성하게 해주는 AWS 기술들 - 서호석 이사, YOUNGWOO DIGITAL :: AWS Summit Seoul ...
E-Commerce 를 풍성하게 해주는 AWS 기술들 - 서호석 이사, YOUNGWOO DIGITAL :: AWS Summit Seoul ...
 
개발자를 위한 클라우드 기술 트렌드- 윤석찬, AWS 테크에반젤리스트 :: Hello T 개발자 컨퍼런스
개발자를 위한 클라우드 기술 트렌드- 윤석찬, AWS 테크에반젤리스트 :: Hello T 개발자 컨퍼런스개발자를 위한 클라우드 기술 트렌드- 윤석찬, AWS 테크에반젤리스트 :: Hello T 개발자 컨퍼런스
개발자를 위한 클라우드 기술 트렌드- 윤석찬, AWS 테크에반젤리스트 :: Hello T 개발자 컨퍼런스
 
[MINDsLab]maum.ai platform_Introduction_20230220.pdf
[MINDsLab]maum.ai platform_Introduction_20230220.pdf[MINDsLab]maum.ai platform_Introduction_20230220.pdf
[MINDsLab]maum.ai platform_Introduction_20230220.pdf
 
GS Neotek aws_Amazon_CloudFrontDay2018_session5
GS Neotek aws_Amazon_CloudFrontDay2018_session5GS Neotek aws_Amazon_CloudFrontDay2018_session5
GS Neotek aws_Amazon_CloudFrontDay2018_session5
 
4시간안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성 - 최지웅 부대표, 오픈소스컨설팅 :: AWS Summit Seoul 2019
4시간안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성 - 최지웅 부대표, 오픈소스컨설팅 :: AWS Summit Seoul 20194시간안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성 - 최지웅 부대표, 오픈소스컨설팅 :: AWS Summit Seoul 2019
4시간안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성 - 최지웅 부대표, 오픈소스컨설팅 :: AWS Summit Seoul 2019
 
4시간 안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성_최지웅_오픈소스컨설팅
4시간 안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성_최지웅_오픈소스컨설팅4시간 안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성_최지웅_오픈소스컨설팅
4시간 안에 끝내는 AWS 클라우드 전환 및 운영 환경 구성_최지웅_오픈소스컨설팅
 
[AWS Dev Day] 이머징 테크 | AWS AI 서비스로 SAP 비지니스 프로세스 자동화하기 - 이상규 AWS 솔루션즈 아키텍트, 이...
[AWS Dev Day] 이머징 테크 | AWS AI 서비스로 SAP 비지니스 프로세스 자동화하기 - 이상규 AWS 솔루션즈 아키텍트, 이...[AWS Dev Day] 이머징 테크 | AWS AI 서비스로 SAP 비지니스 프로세스 자동화하기 - 이상규 AWS 솔루션즈 아키텍트, 이...
[AWS Dev Day] 이머징 테크 | AWS AI 서비스로 SAP 비지니스 프로세스 자동화하기 - 이상규 AWS 솔루션즈 아키텍트, 이...
 
AWS builders industry edition : 인공지능과 클라우드를 통한 고객 관리 변화
AWS builders industry edition : 인공지능과 클라우드를 통한 고객 관리 변화AWS builders industry edition : 인공지능과 클라우드를 통한 고객 관리 변화
AWS builders industry edition : 인공지능과 클라우드를 통한 고객 관리 변화
 

Mehr von Amazon Web Services Korea

AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2Amazon Web Services Korea
 
AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1Amazon Web Services Korea
 
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...Amazon Web Services Korea
 
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...Amazon Web Services Korea
 
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...Amazon Web Services Korea
 
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...Amazon Web Services Korea
 
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...Amazon Web Services Korea
 
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...Amazon Web Services Korea
 
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon Web Services Korea
 
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...Amazon Web Services Korea
 
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...Amazon Web Services Korea
 
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...Amazon Web Services Korea
 
From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...Amazon Web Services Korea
 
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...Amazon Web Services Korea
 
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...Amazon Web Services Korea
 
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...Amazon Web Services Korea
 
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...Amazon Web Services Korea
 
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...Amazon Web Services Korea
 
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...Amazon Web Services Korea
 
[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...
[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...
[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...Amazon Web Services Korea
 

Mehr von Amazon Web Services Korea (20)

AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2
 
AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1
 
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
 
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
 
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
 
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
 
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
 
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
 
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
 
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
 
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
 
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
 
From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...
 
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
 
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
 
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
 
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
 
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
 
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
 
[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...
[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...
[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...
 

Kürzlich hochgeladen

Merge (Kitworks Team Study 이성수 발표자료 240426)
Merge (Kitworks Team Study 이성수 발표자료 240426)Merge (Kitworks Team Study 이성수 발표자료 240426)
Merge (Kitworks Team Study 이성수 발표자료 240426)Wonjun Hwang
 
A future that integrates LLMs and LAMs (Symposium)
A future that integrates LLMs and LAMs (Symposium)A future that integrates LLMs and LAMs (Symposium)
A future that integrates LLMs and LAMs (Symposium)Tae Young Lee
 
Continual Active Learning for Efficient Adaptation of Machine LearningModels ...
Continual Active Learning for Efficient Adaptation of Machine LearningModels ...Continual Active Learning for Efficient Adaptation of Machine LearningModels ...
Continual Active Learning for Efficient Adaptation of Machine LearningModels ...Kim Daeun
 
캐드앤그래픽스 2024년 5월호 목차
캐드앤그래픽스 2024년 5월호 목차캐드앤그래픽스 2024년 5월호 목차
캐드앤그래픽스 2024년 5월호 목차캐드앤그래픽스
 
MOODv2 : Masked Image Modeling for Out-of-Distribution Detection
MOODv2 : Masked Image Modeling for Out-of-Distribution DetectionMOODv2 : Masked Image Modeling for Out-of-Distribution Detection
MOODv2 : Masked Image Modeling for Out-of-Distribution DetectionKim Daeun
 
Console API (Kitworks Team Study 백혜인 발표자료)
Console API (Kitworks Team Study 백혜인 발표자료)Console API (Kitworks Team Study 백혜인 발표자료)
Console API (Kitworks Team Study 백혜인 발표자료)Wonjun Hwang
 

Kürzlich hochgeladen (6)

Merge (Kitworks Team Study 이성수 발표자료 240426)
Merge (Kitworks Team Study 이성수 발표자료 240426)Merge (Kitworks Team Study 이성수 발표자료 240426)
Merge (Kitworks Team Study 이성수 발표자료 240426)
 
A future that integrates LLMs and LAMs (Symposium)
A future that integrates LLMs and LAMs (Symposium)A future that integrates LLMs and LAMs (Symposium)
A future that integrates LLMs and LAMs (Symposium)
 
Continual Active Learning for Efficient Adaptation of Machine LearningModels ...
Continual Active Learning for Efficient Adaptation of Machine LearningModels ...Continual Active Learning for Efficient Adaptation of Machine LearningModels ...
Continual Active Learning for Efficient Adaptation of Machine LearningModels ...
 
캐드앤그래픽스 2024년 5월호 목차
캐드앤그래픽스 2024년 5월호 목차캐드앤그래픽스 2024년 5월호 목차
캐드앤그래픽스 2024년 5월호 목차
 
MOODv2 : Masked Image Modeling for Out-of-Distribution Detection
MOODv2 : Masked Image Modeling for Out-of-Distribution DetectionMOODv2 : Masked Image Modeling for Out-of-Distribution Detection
MOODv2 : Masked Image Modeling for Out-of-Distribution Detection
 
Console API (Kitworks Team Study 백혜인 발표자료)
Console API (Kitworks Team Study 백혜인 발표자료)Console API (Kitworks Team Study 백혜인 발표자료)
Console API (Kitworks Team Study 백혜인 발표자료)
 

한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 - 강정희 솔루션즈 아키텍트, AWS :: AWS Innovate 2019

  • 1. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 한국어를 위한 AWS 인공지능(AI) 서비스 소개 및 활용 방법 강정희 AWS 솔루션즈 아키텍트
  • 2. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 목차 • Why AI/ML in Language? • AWS의 인공지능 언어 서비스 • Amazon ML Stack • AI Speech 서비스 • AI Language 서비스 • 서비스 연동 및 활용 사례
  • 3. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Why AI/ML in Language? Artificial Intelligence & Machine Learning
  • 4. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 언어 데이터 처리의 중요성 음성 데이터 • 고객 지원 센터 • 각종 회의, 미팅 영상 데이터 • TV 방송 • 온-디맨드 비디오 • 소셜 미디어 최근 디지털 데이터의 증가 수준은 전례가 없을 정도로 폭발적입니다. 특히, ‘언어’와 관련된 음성/영상 데이터의 비중은 더욱 커지고 있습니다. Deloitte Insights: https://www2.deloitte.com/insights/us/en/focus/tech-trends/2017/dark-data-analyzing-unstructured-data.html “In 2020, the digital universe is expected to reach 44 zettabytes” - Deloitte Insights
  • 5. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 자연어 처리의 어려움 - 복잡한 처리 과정 Image Source: http://magizbox.com/training/natural_language_processing/site/tasks.html 자연어 처리(NLP)는 언어학의 개념과 깊은 연관성을 지니고 있으며, 다양하고 복잡한 과정으로 구성되어 있습니다. • 음성 인식 (음운론) Speech-to-Text Text-to-speech • 형태소 분석 (형태론) 동의어, 동음이의어 처리 중의성 해소 신조어, 미등록어 판별 및 등록 • 구문 분석 (통사론, 의미론) 문법 기반 구조 분석 맥락 기반 추론
  • 6. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 음성 인식의 어려움 - 하나만 놓고 보면 쉬울까요? • 높은 노이즈 • 대화 상의 artifacts와 뉘앙스(nuance) • 화자가 여럿일 경우 • 처음 접하는 용어들 • 방언, 사투리 처리 • 활용 사례가 적은 언어 또는 은어 처리 자연어 처리의 한 분야인 음성 인식(ASR Automatic Speech Recognition)에서 특히 해결이 쉽지 않은 문제들로 어떤 것들이 있을까요?
  • 7. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 인식 이후의 텍스트 분석 과정은 더 복잡합니다. “My compliments on the very rapid road openings in New York following Hurricane Sandy” Entity: Location -> City Entity: Hurricane Sandy Sentiment: positive Language: English 또, 수없이 쏟아지는 텍스트에 대해서도 빠르게 파악하고 이해해야 합니다. 이를 위해서는 어떤 것들을 해결해야 할까요? • 고유명사 구분 및 추출 (NER) • 언어에 대한 자동 인식 • 핵심 키워드 파악 및 문서 요약 • 텍스트의 성향 분석 감성 분석 의도 분석, 오피니언 마이닝 • 맥락 기반 추론 • 시간 흐름에 따른 변화 내역 추적 • 지능형 질의 응답
  • 8. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 다양한 언어 지원의 어려움 - 여기서 끝이 아닙니다. APAC : e-Commerce회사의 글로벌 확장 시도 EUROPE : 여행사 웹사이트에서 외국어로 작성된 고객 리뷰 검토 LATIN AMERICA : 금융 서비스 회사에서 수십 만건의 뉴스를 제공 한편, 전세계의 많은 사람들은 대부분 하나의 언어만 구사합니다. 이런 경우에는 또 어떤 어려움이 있을까요?
  • 9. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 새로운 인공지능 기술을 활용한 자연어 처리의 발전 새로운 AI/ML 기술의 적용을 통해 자연어 처리 분야에서는 큰 변화와 혁신이 일어나고 있습니다. 특히, Machine Translation 분야의 성과를 주목할 필요가 있습니다. 기존 방식: Data-driven technology • 과거 최소 30년 전부터 시도되어 온 방법 • 전문 번역가를 통해 만들어진 고품질의 샘플 데이터 확보가 중요 • 대단히 많은 샘플 데이터 확보가 요구됨 • Rule-based Machine Translation 언어학을 기반으로 한 룰(Rule)을 이용하여 입력 언어에 대한 출력 언어 번역 결과를 생성 • Statistical Machine Translation 말뭉치(Corpus)를 기반으로 한 통계 모델을 이용하여 입력 언어에 대한 출력 언어 번역 결과를 생성 최근 방식: Neural technology • Deep Neural Architecture를 이용 • 전체 입력 문장 단위로 어떻게 번역할 것인지 모델링 • 어순, 단어의 의미 (중의성), 문맥 파악 등이 반영됨 • 데이터의 희박성을 극복 • 언어간의 교차 지식도 활용 가능 • 주요 알고리즘 Encoder-Decoder model Bi-directional RNN (Recurrent Neural Network) Sequence-to-sequence (seq2seq) GAN-NMT CNN (Convolutional Neural Networks) . . .
  • 10. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 하지만 누구에게나 머신러닝이 쉽지만은 않습니다. 이렇게 뛰어난 기술 발전에도 불구하고 여전히 AI/ML은 다가가기 어려운 영역일 수 있습니다. 왜 그럴까요..? 학습용 데이터셋이 없어요 데이터 과학자, 머신 러닝 전문가가 없어요. 컴퓨팅 리소스가 부족해요 지금 비즈니스에서 UX를 향상시키고 싶은데 시스템 API 개발만 가능해요 머신 러닝 같은 거 잘 몰라도 그냥 바로 쓸 수 있는 건 없나요? 모든 걸 직접 만들려고 하니 엄두가 안나요 Image source: https://en.wikipedia.org/wiki/The_Scream
  • 11. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS의 인공지능 언어 서비스
  • 12. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon ML Stack – 쉽게 적용하는 AI 서비스 M L F R A M E W O R K S & I N F R A S T R U C T U R E A I S E R V I C E S R E K O G N I T I O N I M A G E P O L L Y T R A N S C R I B E T R A N S L A T E C O M P R E H E N D L E XR E K O G N I T I O N V I D E O Vision Speech Language Chatbots A M A Z O N S A G E M A K E R B U I L D T R A I N F O R E C A S T Forecasting T E X T R A C T P E R S O N A L I Z E Recommendations D E P L O Y Pre-built algorithms & notebooks Data labeling (GROUND TRUTH) One-click model training & tuning Optimization (N E O ) One-click deployment & hosting M L S E R V I C E S F r a m e w o r k s I n t e r f a c e s I n f r a s t r u c t u r e EC2 P3 & P3DN EC2 C5 FPGAs GREENGRASS ELASTIC INFERENCE Reinforcement learningAlgorithms & models (AWS MARKETPLACE FOR MACHINE LEARNING) (App developers with little knowledge of ML) (ML developers and data scientists) (ML researchers and academics) INFERENTIA 언어 서비스문서 인식 (+a)
  • 13. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AI Speech 서비스 AI Vision 서비스 AI Language 서비스 AWS의 인공지능 언어 서비스 문자음성 비디오음성 파일 언어 의미 이미지 다른 언어 데이터 번역 사람 대화 문자음성음성인식(STT) Text to Speech 문서 데이터 문자 데이터 음성 데이터 문자 인식(OCR) 문서 인식(OCR+) 자연어 처리 (감정/구문 분석, 엔터티 인식…) Lex Comprehend Translate Rekognition Textract Transcribe Polly
  • 14. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS의 인공지능 언어 서비스 AI Speech 서비스
  • 15. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Polly • 다양한 국가의 언어 지원 (한국어: 서연) • SSML(Speech Synthesis Markup Language)  W3C 표준에 기반하여 의미적 음성 합성 마크업 언어인 SSML 1.1 지원  음성 속도, 볼륨, 피치, 끊어 읽기 등 다양한 표현 지원  AWS에서 자체적으로 지정한 추가 기능도 지원 • 변환된 음성 파일의 자유로운 저장, 재생, 배포 가능 음성 합성 (TTS, text-to-speech) 서비스 AI Speech 서비스
  • 16. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Polly – Customer cases Amazon Polly가 조선일보 뉴스를 들려드립니다 노컷뉴스, 기사 읽어주는 음성 서비스 ‘노보(NOVO)’ 론칭 AI Speech 서비스 음성 합성
  • 17. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Transcribe 음성 인식 https://aws.amazon.com/ko/blogs/korea/generating-automatic-caption-with-amazon-transcribe/ 음성 입력 정보에 대한 스크립트를 자동으로 생성해내는 완전 관리형 음성 인식 (ASR) 서비스 Amazon Transcribe 고객에 대한 인사이트 글로벌 서비스 맞춤형 광고 아카이브 검색 서비스 확장 (수요 증가) “Amazon Transcribe를 이용한 자동 자막 생성하기” AI Speech 서비스
  • 18. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Transcribe 음성 인식 - AWS Console 기반 - AWS CLI/SDK 기반 transcribe.start_transcription_job( TranscriptionJobName='transcribe-demo', Media={'MediaFileUri': 'https://s3-us-east-1.amazonaws.com/transcribe- demo/demo.wav'}, MediaFormat='wav', LanguageCode='en-US', MediaSampleRateHertz=16000 ) Amazon Transcribe에서 제공하는 다양한 인터페이스를 통해 목적에 맞춰 편리하게 음성-텍스트 변환 작업을 수행할 수 있습니다. AI Speech 서비스
  • 19. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. § Hello/ Hola Amazon S3 Amazon Transcribe는 다양한 기능과 특징을 통해 더 현실적이고 효용성 높은 음성-텍스트 변환 결과를 제공합니다. 일반 음성 데이터, (낮은 음질의) 전화 음성 데이터 모두 지원 타임스탬프 Confidence score 문장부호 반영, 문장 스타일링 영어, 스페인어, 프랑스어, 이탈리아어 지원 (향후 지속적인 확대) S3와 손쉬운 통합 다자간 대화 시 화자(speaker)별 추적 맞춤형 어휘집 구축 제공 Amazon Transcribe 음성 인식 AI Speech 서비스
  • 20. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS의 인공지능 언어 서비스 AI Language (+Chatbots) 서비스 +
  • 21. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Comprehend 자연어 처리 감정 분석 엔티티 추출 언어 핵심 문구 주제 모델링 POWERED BY DEEP LEARNING � Amazon Comprehend는 Deep Learning 기반의 NLP 엔진이 탑재된 완전 관리형 AWS의 자연 언어 처리 서비스 입니다. AI Language 서비스
  • 22. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Comprehend 자연어 처리 A m a z o n . c o m , I n c . i s l o c a t e d i n S e a t t l e , W A a n d w a s f o u n d e d J u l y 5 t h , 1 9 9 4 b y J e f f B e z o s . O u r c u s t o m e r s l o v e b u y i n g e v e r y t h i n g f r o m b o o k s t o b l e n d e r s a t g r e a t p r i c e s Document Topic Proportion Doc.txt 0 .89 Doc.txt 1 .67 Doc.txt 2 .91 Topic Term Weight 0 Washington .89 1 Silicon Valley .67 2 Roasting .91 Keywords Topic Groups Document Relationship to Topics TOPIC MODELING Named Entities • Amazon.com : Organization • Seattle, WA : Location • July 5th, 1994 : Date • Jeff Bezos : Person Key Phrases • Our customers • books • blenders • great prices Sentiment • Positive Language • English AI Language 서비스
  • 23. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Comprehend – Customer cases 자연어 처리 ClearView Social Amazon Comprehend 기반 소셜 공유 효과 측정 ☛ at AWS Machine Learning Blog Tag Heatmap (from Amazon Comprehend) Smart Chat App categorizing topics in real-time (conversation-aware chat room) ☛ at PubNub Tech blog AI Language 서비스
  • 24. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Translate 번역 • 글로벌 확장을 위한 필수 요소 • 다양한 활용 사례를 통한 대규모 처리 "Amazon Web Services is a collection of cloud computing services" “Amazon Web Services es una colección de servicios de computación en la nube” Context aware: knows not to translate “Amazon” to “Amazonas“ (Amazon Jungle) Learns to re-order words & phrases according to the grammar of each language Neural Architecture • Encoder-Decoder • Convolutional • Transformer • … Amazon Translate는 높은 퀄리티로 다양한 언어에 대해 대량의 컨텐트 번역, 실시간 번역을 제공하는 완전 관리형 Neural Machine Translation 서비스입니다. AI Language 서비스
  • 25. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 대용량 컨텐트 번역 실시간 번역 총 21개 언어에 대해 번역 서비스 제공 번역 대상 언어 자동 탐지 Amazon Translate는 다음과 같은 주요 기능을 제공하며 한국어를 포함한 21개 언어, 417개 조합의 번역을 지원합니다. Arabic, Chinese, French, German, Portuguese, Spanish … Amazon Translate 번역 AI Language 서비스
  • 26. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Translate - 주요 활용 사례 Twitch 스트리밍 텍스트 데이터의 실시간 번역 AI Language 서비스
  • 27. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 텍스트 및 음성 이해 : Amazon Alexa와 같은 기술 기반 엔터프라이즈 SaaS 커넥터 제공: 엔터프라이즈 시스템 연동 대화형 서비스 구축을 위한 직관적인 도구 제공 지속적인 학습: 봇을 모니터링하고 개선 한 번의 Build로 다양한 플랫폼에 적용 Amazon Lex Chatbot
  • 28. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Lex - 적용 기술 및 서비스 Chatbot
  • 29. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 정보봇 서비스 모든 고객의 매일 일상적 질의에 대한 챗봇 서비스 어플리케이션 봇 모바일 어플리케이션에 강력한 인터페이스 연계 • 뉴스 업데이트 • 날씨 정보 • 스포츠 경기 스코어 • 티켓예약 • 식사 주문 • 은행 계좌 관리 등 기업 생산성 봇 기업의 업무에서 생산성 향상과 업무 과정상에 지원 • 매출 확인 • 마케팅 상황/결과 • 실시간 재고 파악 봇 디바이스 상호 작용에서 인터페이스를 통한 대화 컨트롤 가능 • 웨어러블 • 원격 어플리케이션 • 자동화 Amazon Lex – 사용 예시
  • 30. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 서비스 연동과 활용 사례
  • 31. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Pairing Amazon ML Services AWS에서 제공하는 ML 관련 서비스들을 서로 연동시켜서 더 다양한 분야에 폭넓게 적용시킬 수 있습니다. Amazon Comprehend Amazon Transcribe Amazon Lex Amazon Connect Amazon Translate Amazon Transcribe Amazon Translate Amazon Comprehend Amazon Rekognition Amazon Transcribe Amazon Connect Amazon Transcribe …
  • 32. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Vision 서비스를 활용한 문서 데이터 활용 문자음성 비디오음성 파일 언어 의미 이미지 다른 언어 데이터 번역 사람 대화 음성음성인식(STT) Text to Speech 문서 데이터 문자 데이터 음성 데이터 문자 인식(OCR) 문서 인식(OCR+) 자연어 처리 (감정/구문 분석, 엔터티 인식…) Comprehend Translate Textract 예시 : • Amazon Comprehend • 도서 태깅, 설문지를 통한 고객 피드백 분석 • Amazon Comprehend Medical : 의료문서 분석 • Amazon Translate • 영문 서적 스캔 본 자동 번역 • Amazon Polly : 동화책 읽어주는 로봇 Amazon Textract를 활용하면 이미지 로부터 문서(문자) 데이터를 추출하여 필요한 언어 기능을 적용하여 새로운 인사이트를 얻을 수 있습니다. Polly
  • 33. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Textract Reference architecture—Extract for NLP Quickly turn extracted text/data into actionable insights Input Uploaded document images of medical notes, explanation of benefits, and patient forms Amazon S3 Uploaded documents are stored in S3 NLP Use natural language processing to extract insights from medical documents Amazon Elasticsearch Service Easily search through extracted data and text insights Output Discover medical insights to improve patient care Amazon Textract Automatically extract words and lines of text, and tables
  • 34. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 번역 서비스를 중심으로 언어 지원 확대 문자음성 비디오음성 파일 언어 의미 이미지 다른 언어 데이터 번역 사람 대화 음성음성인식(STT) Text to Speech 문서 데이터 문자 데이터 음성 데이터 문자 인식(OCR) 문서 인식(OCR+) 자연어 처리 (감정/구문 분석, 엔터티 인식…) Lex Comprehend Translate Textract 예시 : • Amazon Comprehend • 각국 소셜 미디어, 뉴스 동향 분석 • 글로벌 e-commerce 고객 후기 분석 • Amazon Transcribe • 해외 연사 강연 시 동시 번역기 Amazon Translate를 중심으로 현재 한국어 등 특정 언어를 지원하지 않는 서비스 기능을 활용할 수 있습니다. Transcribe
  • 35. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Demo : Serverless Subtitles https://github.com/awslabs/serverless-subtitles • 동영상이 업로드 되면 자동으로 자막을 생성(Transcribe)하고, 각 언어 별 자막을 제공하는(Translate) 서버리스 애플리케이션 * 예제는 한글 지원을 하지 않으나 간단히 코드에 언어 코드(“ko”)를 수정하여 구성 가능
  • 36. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 정리하면… • AWS AI 언어 서비스를 활용하면 많은 인공지능 기술이나 인력 없이도 손쉽게 자연어 처리 기능을 활용 하실 수 있습니다. • AWS에서 제공하는 ML 관련 서비스들을 서로 연동시켜서 더 다양한 분야에 폭넓게 적용시킬 수 있습니다. • Amazon Textract를 활용하면 이미지 로부터 문서(문자) 데이터를 추출하여 필요한 언어 기능을 적용하여 새로운 인사이트를 얻을 수 있습니다. • Amazon Translate를 중심으로 현재 한국어 등 특정 언어를 지원하지 않는 서비스 기능을 활용할 수 있습니다.
  • 37. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 기계학습(Machine Learning)을 위해 AWS를 선택해야 하는 이유 데모 존 실제 사용 환경에서 기계학습의 사용방법을 살펴보세요 AWS 기반 머신러닝 https://aws.amazon.com/ machine-learning/ 전문가에게 물어보세요 AWS 전문가가 질문에 답변드립니다
  • 38. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS 전문가로부터 기술과 지식을 습득하고, AWS 클라우드와 함께 미래를 설계하세요 클라우드 역량을 개발할 준비가 되셨다면 https://www.aws.training/ 을 방문하세요! 온라인 교육 AWS 전문가가 진행하는 무료 온라인 교육 과정 강의식 교육 AWS 공인 강사가 진행하는 오프라인 교육 과정 AWS 자격증 클라우드 전문성 입증을 위한 업계에서 인정 받는 AWS 공인 자격증
  • 39. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS Innovate 에 참석해주셔서 대단히 감사합니다. 저희가 준비한 내용, 어떻게 보셨나요? 더 나은 세미나를 위하여 설문을 꼭 작성해 주시기 바랍니다. aws-korea-marketing@amazon.com twitter.com/AWSKorea facebook.com/amazonwebservices.ko youtube.com/user/AWSKorea slideshare.net/awskorea twitch.tv/aws