SlideShare a Scribd company logo
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
http://hunkim.github.io/ml/
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
More compute
Accuracy
Scale (data size, model size)
neural
networks
other
approaches
Now
© Jeff Dean, Trends and Developments in Deep Learning Research
http://www.slideshare.net/AIFrontiers/jeff-dean-trends-and-developments-in-deep-learning-research
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
BlindTool by Joseph Paul Cohen on Nexus 4
Mobile Application
• https://github.com/dmlc/mxnet.js/
• http://rupeshs.github.io/machineye
MXNetJS in Web Browser
Web Applications
• https://www.youtube.com/watch
?v=UHUC4ueEiwM
• https://play.google.com/store/ap
ps/details?id=the.blindtool
Deep Drone: Object Detection and Tracking
for Smart Drones on Embedded System
TX1 with
customized
board
Drone
• https://web.stanford.edu/class/cs231a/prev_projects_20
16/deep-drone-object__2_.pdf
Deep RL | Playing Flappy Birds
• https://github.com/li-haoran/DRL-FlappyBird
• https://github.com/devsisters/DQN-tensorflow
Human-Level Control
through Deep Reinforcement Learning
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Spot Instances (80% ↓)
= $30 per hour
$aws ec2-run-instances ami-b232d0db
--instance-count 20
--instance-type p2.8xlarge
--region us-east-1
$aws ec2-stop-instances
i-10a64379 i-10a64280 ...
1GiB
GPU Memory
2 GiB
4 GiB
8 GiB
NVIDIA Tesla
GPU Card
P2: GPU-accelerated computing
§ Enabling a high degree of parallelism – each
GPU has thousands of cores
§ Consistent, well documented set of APIs
(CUDA, OpenACC, OpenCL)
§ Supported by a wide variety of ISVs and open
source frameworks
Xilinx UltraScale+
FPGA
F1: FPGA-accelerated computing
§ Massively parallel – each FPGA includes millions
of parallel system logic cells
§ Flexible – no fixed instruction set, can implement
wide or narrow datapaths
§ Programmable using available, cloud-based FPGA
development tools
https://aws.amazon.com/ko/batch/
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
•
•
•
•
•
http://bit.ly/deepami
http://bit.ly/deepubuntu
•
•
•
•
기반 예제
•
•
•
•
•
•
•
•
•
•
http://mxnet.io/
https://github.com/dmlc/mxnet
http://incubator.apache.org/projects/mxnet.html
3
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
http://bit.ly/deepcfn
•
•
•
•
•
•
•
1
4.75
8.5
12.25
16
1 4.75 8.5 12.25 16
Speedup(x)
# GPUs
Resnet 152 Inceptin V3
Alexnet Ideal
91% Efficiency
88% Efficiency
# GPUs
• EC2 16x P2.16xlarge by AWS CloudFormation
• Mounted on Amazon EFS
../../tools/launch.py -n
$DEEPLEARNING_WORKERS_COUNT -H
$DEEPLEARNING_WORKERS_PATH
python train_mnist.py
--gpus $(seq -s , 0 1 $
(($DEEPLEARNING_WORKER_GPU_COUNT - 1)))
--network lenet --kv-store dist_sync
parameter
server
network
choice
update
policy
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
•
•
•
•
•
•
•
•
•
•
•
https://www.youtube.com/
watch?v=q6gx9yk0nQo
https://www.slideshare.net/AIFrontie
rs/scaling-deep-learning-with-mxnet
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
http://j.mp/2hne9IL
import mxnet as mx
bucket = 'my-model-bucket’
s3_client = boto3.client('s3')
f_params = 'resnet-18-0000.params'
f_symbol = 'resnet-18-symbol.json'
#params
f_params_file = tempfile.NamedTemporaryFile()
s3_client.download_file(bucket, f_params, f_params_file.name)
#symbol
f_symbol_file = tempfile.NamedTemporaryFile()
s3_client.download_file(bucket, f_symbol, f_symbol_file.name)
def lambda_handler(event, context):
model = load_model(f_params_file, f_symbol_file)
•
•
$ wrk -t40 -c120 -d60s https://48l7awor09.execute-api.us-
east-1.amazonaws.com/dev/predict?url=img_url
Thread Stats Avg Stdev Max +/- Stdev
Latency 1.18s 96.82ms 1.98s 81.23%
Req/Sec 2.39 2.87 10.00 87.91%
4520 requests in 1.00m, 3.16MB read
Socket errors: connect 0, read 0, write 0, timeout 0
Requests/sec: 75.23
Transfer/sec: 53.85KB
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
•
•
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)
딥러닝 개발자를 위한 AWS 크레딧 제공!
http://bit.ly/awskr-feedback
AWS Activate 패키지
100달러 무료 크레딧 + 80 달러 Qwiklab Credit
600달러 온라인 강좌 수강권+ 100달러 1개월 비지니스 서포트
등록하시면 패키지를 받으실 수 있는 URL 및 AWS 학습 정보를 이메일로 보내드립니다!
•
•
•
•
Deep Learning을 위한  AWS 기반 인공 지능(AI) 서비스 (윤석찬)

More Related Content

PDF
40 ĐỀ THI THỬ TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2024 - 2025 SỞ GIÁO...
PDF
BỘ ĐỀ KIỂM TRA TIẾNG ANH I-LEARN SMART WORLD 7 CẢ NĂM CÓ ĐÁP ÁN, FILE NGHE (Đ...
PDF
IEEE 802.11ac Standard
PDF
BÀI TẬP BỔ TRỢ 4 KĨ NĂNG TIẾNG ANH LỚP 8 - HK2 - GLOBAL SUCCESS - NĂM HỌC 202...
PPTX
Tổng quan hệ thống di động gsm
PDF
BÀI TẬP DẠY THÊM TOÁN 11 - CHÂN TRỜI SÁNG TẠO - CẢ NĂM - CHƯƠNG 3 - GIỚI HẠN ...
DOC
Hướng dẫn sử dụng phần mềm packet tracer
PDF
18989547 bg3 g-wcdma
40 ĐỀ THI THỬ TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2024 - 2025 SỞ GIÁO...
BỘ ĐỀ KIỂM TRA TIẾNG ANH I-LEARN SMART WORLD 7 CẢ NĂM CÓ ĐÁP ÁN, FILE NGHE (Đ...
IEEE 802.11ac Standard
BÀI TẬP BỔ TRỢ 4 KĨ NĂNG TIẾNG ANH LỚP 8 - HK2 - GLOBAL SUCCESS - NĂM HỌC 202...
Tổng quan hệ thống di động gsm
BÀI TẬP DẠY THÊM TOÁN 11 - CHÂN TRỜI SÁNG TẠO - CẢ NĂM - CHƯƠNG 3 - GIỚI HẠN ...
Hướng dẫn sử dụng phần mềm packet tracer
18989547 bg3 g-wcdma

What's hot (20)

PDF
CHUYÊN ĐỀ BÀI TẬP TOÁN 11 - SÁCH KẾT NỐI TRI THỨC - CẢ NĂM - CHƯƠNG 1 - HÀM S...
PPT
Thuật toán K mean
PDF
cau-hoi-trac-nghiem-thong-tin-di-dong
PDF
Thong tin quang 2
PDF
Tuyển tập đề thi vào lớp 10 môn Toán THPT - Thầy Thích
PDF
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 (HK1) CÓ FILE NGHE (BẢN HS-GV)
PDF
BỘ CHUYÊN ĐỀ BỒI DƯỠNG NGỮ PHÁP THI HSG TIẾNG ANH 7 (LÍ THUYẾT + BÀI TẠ...
PPTX
AC9 [Étude] Déployer sa marque employeur
PDF
ĐỀ ĐỀ XUẤT THI VÀO 10 THPT THÀNH PHỐ HẢI PHÒNG MÔN TIẾNG ANH 9 NĂM HỌC 2023-2...
PPTX
D1. Marque employeur : comment accompagner les entreprises dans leurs stratég...
PPT
6 lte cours (1)
PDF
CHUYÊN ĐỀ BỒI DƯỠNG HỌC SINH GIỎI MÔN NGỮ VĂN 7 SÁCH KẾT NỐI TRI THỨC NĂM 202...
PDF
What is a Private 5G Network.pdf
PPTX
Community detection in social networks
PDF
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (CÓ FILE NGHE, ĐÁP ÁN, TAPESC...
PDF
4 g evolution
PDF
CHUYÊN ĐỀ DẠY HỌC SINH GIỎI KHOA HỌC TỰ NHIÊN - VẬT LÝ 8 CHƯƠNG TRÌNH MỚI BÀI...
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 11 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-...
PDF
BÀI TẬP BỔ TRỢ TIẾNG ANH I-LEARN SMART WORLD 4 - CẢ NĂM (CÓ FILE NGHE + ĐÁP ...
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 11 I-LEARN SMART WORLD (PRACTICE TEST) (BẢ...
CHUYÊN ĐỀ BÀI TẬP TOÁN 11 - SÁCH KẾT NỐI TRI THỨC - CẢ NĂM - CHƯƠNG 1 - HÀM S...
Thuật toán K mean
cau-hoi-trac-nghiem-thong-tin-di-dong
Thong tin quang 2
Tuyển tập đề thi vào lớp 10 môn Toán THPT - Thầy Thích
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 (HK1) CÓ FILE NGHE (BẢN HS-GV)
BỘ CHUYÊN ĐỀ BỒI DƯỠNG NGỮ PHÁP THI HSG TIẾNG ANH 7 (LÍ THUYẾT + BÀI TẠ...
AC9 [Étude] Déployer sa marque employeur
ĐỀ ĐỀ XUẤT THI VÀO 10 THPT THÀNH PHỐ HẢI PHÒNG MÔN TIẾNG ANH 9 NĂM HỌC 2023-2...
D1. Marque employeur : comment accompagner les entreprises dans leurs stratég...
6 lte cours (1)
CHUYÊN ĐỀ BỒI DƯỠNG HỌC SINH GIỎI MÔN NGỮ VĂN 7 SÁCH KẾT NỐI TRI THỨC NĂM 202...
What is a Private 5G Network.pdf
Community detection in social networks
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (CÓ FILE NGHE, ĐÁP ÁN, TAPESC...
4 g evolution
CHUYÊN ĐỀ DẠY HỌC SINH GIỎI KHOA HỌC TỰ NHIÊN - VẬT LÝ 8 CHƯƠNG TRÌNH MỚI BÀI...
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 11 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-...
BÀI TẬP BỔ TRỢ TIẾNG ANH I-LEARN SMART WORLD 4 - CẢ NĂM (CÓ FILE NGHE + ĐÁP ...
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 11 I-LEARN SMART WORLD (PRACTICE TEST) (BẢ...
Ad

Similar to Deep Learning을 위한 AWS 기반 인공 지능(AI) 서비스 (윤석찬) (20)

PDF
DevOps-Roadmap
PPTX
What's New in Docker - February 2017
PDF
DevOps Roadmap for freshers great guide.pdf
PDF
OSDC 2016 - Continous Integration in Data Centers - Further 3 Years later by ...
PDF
A Love Story with Kubevirt and Backstage from Cloud Native NoVA meetup Feb 2024
PPTX
Machine Learning , Analytics & Cyber Security the Next Level Threat Analytics...
PPTX
BSidesDFW2022-PurpleTeam_Cloud_Identity.pptx
PDF
Introduction of eBPF - 時下最夯的Linux Technology
PDF
Bring-your-ML-Project-into-Production-v2.pdf
PDF
Apache Deep Learning 201 - Philly Open Source
PDF
OpenCloudDay 2014: Deploying trusted developer sandboxes in Amazon's cloud
PDF
Deep Learning with Apache MXNet
PDF
Apache Deep Learning 201 - Barcelona DWS March 2019
PDF
Metasploitation part-1 (murtuja)
PPTX
Big data hadoop
PDF
Week 4 lecture material cc (1)
PDF
week 4_watermark.pdfffffffffffffffffffff
PPTX
Build Your First SharePoint Framework Webpart
PDF
Scaleable PHP Applications in Kubernetes
PDF
Ultra Fast Deep Learning in Hybrid Cloud Using Intel Analytics Zoo & Alluxio
DevOps-Roadmap
What's New in Docker - February 2017
DevOps Roadmap for freshers great guide.pdf
OSDC 2016 - Continous Integration in Data Centers - Further 3 Years later by ...
A Love Story with Kubevirt and Backstage from Cloud Native NoVA meetup Feb 2024
Machine Learning , Analytics & Cyber Security the Next Level Threat Analytics...
BSidesDFW2022-PurpleTeam_Cloud_Identity.pptx
Introduction of eBPF - 時下最夯的Linux Technology
Bring-your-ML-Project-into-Production-v2.pdf
Apache Deep Learning 201 - Philly Open Source
OpenCloudDay 2014: Deploying trusted developer sandboxes in Amazon's cloud
Deep Learning with Apache MXNet
Apache Deep Learning 201 - Barcelona DWS March 2019
Metasploitation part-1 (murtuja)
Big data hadoop
Week 4 lecture material cc (1)
week 4_watermark.pdfffffffffffffffffffff
Build Your First SharePoint Framework Webpart
Scaleable PHP Applications in Kubernetes
Ultra Fast Deep Learning in Hybrid Cloud Using Intel Analytics Zoo & Alluxio
Ad

More from Amazon Web Services Korea (20)

PDF
[D3T1S01] Gen AI를 위한 Amazon Aurora 활용 사례 방법
PDF
[D3T1S06] Neptune Analytics with Vector Similarity Search
PDF
[D3T1S03] Amazon DynamoDB design puzzlers
PDF
[D3T1S04] Aurora PostgreSQL performance monitoring and troubleshooting by use...
PDF
[D3T1S07] AWS S3 - 클라우드 환경에서 데이터베이스 보호하기
PDF
[D3T1S05] Aurora 혼합 구성 아키텍처를 사용하여 예상치 못한 트래픽 급증 대응하기
PDF
[D3T1S02] Aurora Limitless Database Introduction
PDF
[D3T2S01] Amazon Aurora MySQL 메이저 버전 업그레이드 및 Amazon B/G Deployments 실습
PDF
[D3T2S03] Data&AI Roadshow 2024 - Amazon DocumentDB 실습
PDF
AWS Modern Infra with Storage Roadshow 2023 - Day 2
PDF
AWS Modern Infra with Storage Roadshow 2023 - Day 1
PDF
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
PDF
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
PDF
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
PDF
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
PDF
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
PDF
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
PDF
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
PDF
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
PDF
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
[D3T1S01] Gen AI를 위한 Amazon Aurora 활용 사례 방법
[D3T1S06] Neptune Analytics with Vector Similarity Search
[D3T1S03] Amazon DynamoDB design puzzlers
[D3T1S04] Aurora PostgreSQL performance monitoring and troubleshooting by use...
[D3T1S07] AWS S3 - 클라우드 환경에서 데이터베이스 보호하기
[D3T1S05] Aurora 혼합 구성 아키텍처를 사용하여 예상치 못한 트래픽 급증 대응하기
[D3T1S02] Aurora Limitless Database Introduction
[D3T2S01] Amazon Aurora MySQL 메이저 버전 업그레이드 및 Amazon B/G Deployments 실습
[D3T2S03] Data&AI Roadshow 2024 - Amazon DocumentDB 실습
AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 1
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...

Recently uploaded (20)

PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Tartificialntelligence_presentation.pptx
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Machine Learning_overview_presentation.pptx
PPTX
Spectroscopy.pptx food analysis technology
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Empathic Computing: Creating Shared Understanding
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
Big Data Technologies - Introduction.pptx
Digital-Transformation-Roadmap-for-Companies.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Tartificialntelligence_presentation.pptx
SOPHOS-XG Firewall Administrator PPT.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
Programs and apps: productivity, graphics, security and other tools
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Machine Learning_overview_presentation.pptx
Spectroscopy.pptx food analysis technology
Encapsulation_ Review paper, used for researhc scholars
Spectral efficient network and resource selection model in 5G networks
Empathic Computing: Creating Shared Understanding
Mobile App Security Testing_ A Comprehensive Guide.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Dropbox Q2 2025 Financial Results & Investor Presentation
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
20250228 LYD VKU AI Blended-Learning.pptx
Big Data Technologies - Introduction.pptx

Deep Learning을 위한 AWS 기반 인공 지능(AI) 서비스 (윤석찬)