SlideShare une entreprise Scribd logo
1  sur  55
Télécharger pour lire hors ligne
—
양 서 연 (Stella Yang)
LG 전자 로봇사업센터 연구원
작고 빠른 딥러닝 그리고 Edge Computing
2
AI, AI, AI
2
Deep Learning Everywhere
3
After Hello World
4
AI for Newbie
5
Do you have GPU?
AI Cloud Service
6
No I don’t have GPU
가난함 돈있음
AI Cloud Service
7
돈있으면 즐길 수 있는 풍성한 클라우드 서비스
Latency Problem
8
Cloud Computing 은 반드시 좋은 것일까?
Cloud 를 경유하며 생기는 latency 증가는
실시간성을 확보해야 하는
자율주행, 로봇등에서 치명적인 문제.
개인정보가 중요시되는 시대에
클라우드 경우시 보안의 문제.
Embedded System
9
제한된 용량, 컴퓨팅 자원, 배터리
Edge Computing
Group Name / DOC ID / Month XX, 2018 / © 2018 IBM Corporation
10
Nvidia TX2
Nvidia TX Nano
Google Coral TPU
Qualcomm RB3 Intel Movidius
Google Coral
GPU / TPU USB Accelerator
임베디드에서도 고성능 연산이 가능하기 시작
On device AI
11
Edge vs Remote
12
Edge 와 Cloud 는 반드시 상충하는 장점으로 선택되어야 할까?
Complementary Concepts
13
Edge 와 Cloud 는 보완적
Distributed Learning
14
전처리, 분산처리, 학습, 데이터
15
On device AI ?
- Light weight
- Fast inference
(low latency)
- Power efficient
- Privacy Protected
How ?
16
- Model Compression
- Compact Networks Design
- Low Computation
- Hardware Aware Distributed Computing
- Memory Bottleneck, I/O Pipeline Optimized
- Federated Learning
17
Compact Networks Design
Residual Connection
Bottle neck , Fire module ,
Depthwise Conv
Pointwise Conv
Grouped Conv
Dense Conv
Pointwise Grouped Conv
Efficientnet
MNASNet
Model Compression
Prunning
Quantization
Tensor factorization
Distillation
AML
만들어진 모델을 압축하는 기법 설계부터 최적의 모델을 설계하는 기법
18
Model Compression
Prunning
19
Ne
Optimal Brain Damage
Threshold 이하의 Node
Prunning 후 Retraining
작고 빠른 딥러닝 그리고 Edge Computing / September 6, 2019 / © 2019 IBM Corporation
Prunning – Dense Sparse Dense
20
Prunning 한 가지를 되살려
다시 학습시키면
Performance 가 증가하지
않을까?
Quantization
작고 빠른 딥러닝 그리고 Edge Computing / September 6, 2019 / © 2019 IBM Corporation 21
Prunning
Generate Code book
Quantization
Huffman Encoding
Code Book 을 통해서 Weight 을 중복 하자
Quantization 을 통해서 경량화하자
Deep Compression: Compressing Deep Neural Networks with Pruning,
Trained Quantization and Huffman Coding
https://arxiv.org/abs/1510.00149
Quantization, Weight Sharing
22
K Clustering
within-cluster sum of squares (WCSS):
Generate code book
Quantized Weight
Retrain, Fine-tuned with quantized gradient
Binarized Neural Network
Weight , Bias, Activation 이진화
Deep Compression
Tensor Factorization
23
5x5 * 1 = 3x3 * 9 -> 3x3 *1
(25) (9+9=18)
3x3 * 1 = 1x3 * 3 -> 3x1 *1
(9) (3+3=6)
nxn = 1*n , n*1
weight 수 :
weight 수 :
Tensor Factorization
Group Name / DOC ID / Month XX, 2018 / © 2018 IBM Corporation 24
Inception Module
Knowledge Distillation
작고 빠른 딥러닝 그리고 Edge Computing / September 6, 2019 / © 2019 IBM Corporation 25
크기가 상대적으로 큰 Teacher network 의
softmax out 을 soften 한 soft labels 를
크기가 상대적으로 작은 student network 에 교사 후
hard label 로 재학습
Knowledge Distillation
26
https://blog.lunit.io/2018/03/22/distilling-the-knowledg
e-in-a-neural-network-nips-2014-workshop/
Knowledge Distillation
작고 빠른 딥러닝 그리고 Edge Computing / September 6, 2019 / © 2019 IBM Corporation 27
28
Model Compression
Prunning : 가지치기!
Quantization : Bit resolution 낮추기!
Tensor factorization : 인수분해!
Knowledge distillation : 큰 그릇에서 작은 그릇으로!
Group Name / DOC ID / Month XX, 2018 / © 2018 IBM Corporation 29
Compact Networks Design
Residual Connection
Group Name / DOC ID / Month XX, 2018 / © 2018 IBM Corporation 30
이전 layer 의 정보를 넘겨주는 것.
깊은 망도 더 잘 최적화.
동일 파라메터수, 연산량의 증가가 덧셈 외에 거의 없음
ResNet
Bottleneck Convolution
Group Name / DOC ID / Month XX, 2018 / © 2018 IBM Corporation 31
Dimension reduction
Parameter reduction
Bottle Neck
ResNet
Dimension Reduction Conv
작고 빠른 딥러닝 그리고 Edge Computing / September 6, 2019 / © 2019 IBM Corporation 32
각 채널별 spatial 정보만을
이용하여 convolution 을 한다.
Channel 간의 weighted linear
combination
-Dimension reduction
Standard Convolution Depthwise Convolution Pointwise Convolution
Depthwise Separable Convolution
작고 빠른 딥러닝 그리고 Edge Computing / September 6, 2019 / © 2019 IBM Corporation 33
Depthwise convolution
Pointwise convolution
MobileNet, Xception
Depthwise Separable Convolution
34
https://www.slideshare.net/NaverEngineering/designing-
more-efficient-convolution-neural-network-122869307
Fire module
35
SqueezeNet
Squeeze layer :
1x1 conv 로 Pointwise conv 수행
= channel reduction
Expansion layer :
1x1 은 spatial feature 를
잘 찾아내지 못하므로
3x3 과 섞어서 사용. Padding 을 이용해
두 kernel 의 결과를 같게 하여 적층
Grouped Convolution
Group Name / DOC ID / Month XX, 2018 / © 2018 IBM Corporation 36
Filter 를 group 화 하면 channel 정보를 분리해서 학습이 가능
1x1 은 모든 채널을 연결하는 반면, group conv 는 특정 채널끼리 연결
각 그룹마다 correlation 이 높은 정보를 학습 가능
Sparse 해지므로 더 적은 파라메터를 가짐
Grouped Convolution
37
AlexNet
Group 의 수에 따라서 정밀도에도 영향을 미
침 (hyper parameter)
각 그룹마다 학습되는 네트워크가 다른
feature 를 뽑아 낼 수 있음
Channel Shuffle
38
ShuffleNet
Depth wise convolution 은 효율적이
지만 여전히 1x1 연산의 cost 가 크다.
Group conv 로 특정 채널끼리만 연결
하면 더 효율적이나 그룹들간에 연결
성 저하됨.
그룹간의 연결성을 channel
shuffle 로 극복
Pointwise Grouped Convolution
39
ShuffleNet
Bottle neck 구조에서
Group conv 와
Channel shuffle 을 사용
stride=2 인 3x3 average
pooling shortcut path
: output size가 2배 줄이기위함
Dense Convolution
40
Concatenate
Resnet Densenet
Bottleneck layer 에서 1x1 으로 expansion 하는
대신 concatinate 하여 feature 를 growth rate 만큼씩 키운다.
Shiftnet
41
하나만 1 인 kernel matrix 를 곱하여
Feature shift 가 일어나는 효과를 이용
Spatial change 외에 channel 별 연결을 위해
Pointwise convolution
All you need is few shift
42
Grouped Shift
Active shift
그룹별로 묶어서
채널별로 최적 shift 가 있지 않을까
학습으로 찾아보자!
Shift 는 pixelwise integer 로 일어남
Integer 는 Differential 이 안됨
Real value 로 우선 학습 후
Bilinear interpolation으로 integer 값을 추정함
https://www.youtube.com/watch?v=c3xLY7EuikU
&feature=youtu.be
Compound Scaling
43
EfficientNet
https://tykimos.github.io/warehouse/2019-7-4-ISS_2nd_Deep_
Learning_Conference_All_Together_jwlee_file.pdf
44
Compound Scaling
EfficientNet
하나씩 scale 하는 것 보다 모든 dimension에대해서
로 scaling 하여서 grid search
https://tykimos.github.io/warehouse/2019-7-4-ISS_2nd_Deep_Learni
ng_Conference_All_Together_jwlee_file.pdf
Auto ML
45
AMCMNASNET
Real world platform latency aware 강화학습을 이용하여 automl 을 통해
prunning, quantization 을 조정
46
Compact Networks Design
Residual Connection, Densenet : 깊은 곳까지 정보 전달
Bottleneck, Firemodule: Dimension Reduction
Depthwise Conv, Grouped Conv, Shift: Increase Useful Correlation
Few Shift, Efficientnet, MNASNET, AMC: 최적은 인간이 찾는 것 아님
그밖에 Compact Networks Designs..
Structured Sparsity
multibit quantization
Variational Dropout
Variational Information Bottleneck
Group Name / DOC ID / Month XX, 2018 / © 2018 IBM Corporation 47
Compile Optimization Pipeline Optimization
48
Compiler : Vendor SDK dependency
49
http://blog.naver.com/PostView.nhn?blogId=mesa_&logNo=221466719724&parentCategory
No=&categoryNo=10&viewDate=&isShowPopularPosts=false&from=postView
Compiler 표준화
50
Framework, Compiler, Hardware
dependency 를 표준화를 통해 줄이는 노력.
http://blog.naver.com/PostView.nhn?blogId=mesa_&logNo=
221466719724&parentCategoryNo=&categoryNo=10&viewD
ate=&isShowPopularPosts=false&from=postView
AI future with Edge
51
Distributed
Mobile, Ubiquitous
AI Robotics KR
52
https://github.com/ai-robotics-kr/nnq_cnd_study/blob/
master/AwesomePapers.md
https://www.facebook.com/groups/airoboticskr/
10 월 3 일 (개천절!)
마곡 로보티즈 메이커 스페이스
AI x Robotics The First Meetup
NNQ_CND study
LG 전자 로봇 사업센터
53
Thank you.
54
양서연 (Stella Yang)
LG 전자 로봇사업센터
—
howtowhy@gmail.com
Reviewer : 앤드류엉님
Group Name / DOC ID / Month XX, 2018 / © 2018 IBM Corporation 55

Contenu connexe

Tendances

Generative AI Use cases for Enterprise - Second Session
Generative AI Use cases for Enterprise - Second SessionGenerative AI Use cases for Enterprise - Second Session
Generative AI Use cases for Enterprise - Second SessionGene Leybzon
 
Fairness-aware Machine Learning: Practical Challenges and Lessons Learned (WS...
Fairness-aware Machine Learning: Practical Challenges and Lessons Learned (WS...Fairness-aware Machine Learning: Practical Challenges and Lessons Learned (WS...
Fairness-aware Machine Learning: Practical Challenges and Lessons Learned (WS...Krishnaram Kenthapadi
 
Generative AI at the edge.pdf
Generative AI at the edge.pdfGenerative AI at the edge.pdf
Generative AI at the edge.pdfQualcomm Research
 
Lesson 1 intro to ai
Lesson 1   intro to aiLesson 1   intro to ai
Lesson 1 intro to aiankit_ppt
 
How do Chatbots Work? A Guide to Chatbot Architecture
How do Chatbots Work? A Guide to Chatbot ArchitectureHow do Chatbots Work? A Guide to Chatbot Architecture
How do Chatbots Work? A Guide to Chatbot ArchitectureMaruti Techlabs
 
Issues on Artificial Intelligence and Future (Standards Perspective)
Issues on Artificial Intelligence  and Future (Standards Perspective)Issues on Artificial Intelligence  and Future (Standards Perspective)
Issues on Artificial Intelligence and Future (Standards Perspective)Seungyun Lee
 
Intro Artificial Intelligence
Intro Artificial Intelligence Intro Artificial Intelligence
Intro Artificial Intelligence Hans-Dieter Wehle
 
Artificial general intelligence (AGI) or Strong A.I.
Artificial general intelligence (AGI) or Strong A.I.Artificial general intelligence (AGI) or Strong A.I.
Artificial general intelligence (AGI) or Strong A.I.Pratap Dangeti
 
Landscape of AI/ML in 2023
Landscape of AI/ML in 2023Landscape of AI/ML in 2023
Landscape of AI/ML in 2023HyunJoon Jung
 
Introduction to AI
Introduction to AIIntroduction to AI
Introduction to AIMegha Sharma
 
An introduction to AI (artificial intelligence)
An introduction to AI (artificial intelligence)An introduction to AI (artificial intelligence)
An introduction to AI (artificial intelligence)Bellaj Badr
 
How is AI improving customer experience in Retail?
How is AI improving customer experience in Retail?How is AI improving customer experience in Retail?
How is AI improving customer experience in Retail?Juliana Vectore
 

Tendances (20)

Generative AI Use cases for Enterprise - Second Session
Generative AI Use cases for Enterprise - Second SessionGenerative AI Use cases for Enterprise - Second Session
Generative AI Use cases for Enterprise - Second Session
 
Fairness-aware Machine Learning: Practical Challenges and Lessons Learned (WS...
Fairness-aware Machine Learning: Practical Challenges and Lessons Learned (WS...Fairness-aware Machine Learning: Practical Challenges and Lessons Learned (WS...
Fairness-aware Machine Learning: Practical Challenges and Lessons Learned (WS...
 
Generative AI at the edge.pdf
Generative AI at the edge.pdfGenerative AI at the edge.pdf
Generative AI at the edge.pdf
 
Lesson 1 intro to ai
Lesson 1   intro to aiLesson 1   intro to ai
Lesson 1 intro to ai
 
Future of AI
Future of AIFuture of AI
Future of AI
 
Implementing Ethics in AI
Implementing Ethics in AIImplementing Ethics in AI
Implementing Ethics in AI
 
How do Chatbots Work? A Guide to Chatbot Architecture
How do Chatbots Work? A Guide to Chatbot ArchitectureHow do Chatbots Work? A Guide to Chatbot Architecture
How do Chatbots Work? A Guide to Chatbot Architecture
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
 
Issues on Artificial Intelligence and Future (Standards Perspective)
Issues on Artificial Intelligence  and Future (Standards Perspective)Issues on Artificial Intelligence  and Future (Standards Perspective)
Issues on Artificial Intelligence and Future (Standards Perspective)
 
Intro Artificial Intelligence
Intro Artificial Intelligence Intro Artificial Intelligence
Intro Artificial Intelligence
 
Artificial general intelligence (AGI) or Strong A.I.
Artificial general intelligence (AGI) or Strong A.I.Artificial general intelligence (AGI) or Strong A.I.
Artificial general intelligence (AGI) or Strong A.I.
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
 
Landscape of AI/ML in 2023
Landscape of AI/ML in 2023Landscape of AI/ML in 2023
Landscape of AI/ML in 2023
 
Hyperautomation
HyperautomationHyperautomation
Hyperautomation
 
Introduction to AI
Introduction to AIIntroduction to AI
Introduction to AI
 
Robust ai
Robust aiRobust ai
Robust ai
 
Conversational AI: What's New?
Conversational AI: What's New?Conversational AI: What's New?
Conversational AI: What's New?
 
An introduction to AI (artificial intelligence)
An introduction to AI (artificial intelligence)An introduction to AI (artificial intelligence)
An introduction to AI (artificial intelligence)
 
How is AI improving customer experience in Retail?
How is AI improving customer experience in Retail?How is AI improving customer experience in Retail?
How is AI improving customer experience in Retail?
 
OpenAI.pptx
OpenAI.pptxOpenAI.pptx
OpenAI.pptx
 

Similaire à 작고 빠른 딥러닝 그리고 Edge computing

딥러닝 논문읽기 efficient netv2 논문리뷰
딥러닝 논문읽기 efficient netv2  논문리뷰딥러닝 논문읽기 efficient netv2  논문리뷰
딥러닝 논문읽기 efficient netv2 논문리뷰taeseon ryu
 
History of Vision AI
History of Vision AIHistory of Vision AI
History of Vision AITae Young Lee
 
[Paper] shuffle net an extremely efficient convolutional neural network for ...
[Paper] shuffle net  an extremely efficient convolutional neural network for ...[Paper] shuffle net  an extremely efficient convolutional neural network for ...
[Paper] shuffle net an extremely efficient convolutional neural network for ...Susang Kim
 
네트워크 경량화 이모저모 @ 2020 DLD
네트워크 경량화 이모저모 @ 2020 DLD네트워크 경량화 이모저모 @ 2020 DLD
네트워크 경량화 이모저모 @ 2020 DLDKim Junghoon
 
A Beginner's guide to understanding Autoencoder
A Beginner's guide to understanding AutoencoderA Beginner's guide to understanding Autoencoder
A Beginner's guide to understanding AutoencoderLee Seungeun
 
Designing more efficient convolution neural network
Designing more efficient convolution neural networkDesigning more efficient convolution neural network
Designing more efficient convolution neural networkNAVER Engineering
 
Designing more efficient convolution neural network
Designing more efficient convolution neural networkDesigning more efficient convolution neural network
Designing more efficient convolution neural networkDongyi Kim
 
스마트폰 위의 딥러닝
스마트폰 위의 딥러닝스마트폰 위의 딥러닝
스마트폰 위의 딥러닝NAVER Engineering
 
클라우드 비용 최적화 가이드
클라우드 비용 최적화 가이드클라우드 비용 최적화 가이드
클라우드 비용 최적화 가이드OpsNow
 
Image Deep Learning 실무적용
Image Deep Learning 실무적용Image Deep Learning 실무적용
Image Deep Learning 실무적용Youngjae Kim
 
Node.js + Websocket 삽질기
Node.js + Websocket 삽질기Node.js + Websocket 삽질기
Node.js + Websocket 삽질기Paprikhan
 
밑바닥부터 시작하는딥러닝 8장
밑바닥부터 시작하는딥러닝 8장밑바닥부터 시작하는딥러닝 8장
밑바닥부터 시작하는딥러닝 8장Sunggon Song
 
[AWS & 베스핀글로벌 - 스타트업, 클라우드에 날개를 달자! 세미나] 효과적으로 클라우드 사용하기
[AWS & 베스핀글로벌 - 스타트업, 클라우드에 날개를 달자! 세미나] 효과적으로 클라우드 사용하기[AWS & 베스핀글로벌 - 스타트업, 클라우드에 날개를 달자! 세미나] 효과적으로 클라우드 사용하기
[AWS & 베스핀글로벌 - 스타트업, 클라우드에 날개를 달자! 세미나] 효과적으로 클라우드 사용하기BESPIN GLOBAL
 
Basics of deep learning_imcloud
Basics of deep learning_imcloudBasics of deep learning_imcloud
Basics of deep learning_imcloudimcloud
 
Auto Scalable 한 Deep Learning Production 을 위한 AI Serving Infra 구성 및 AI DevOps...
Auto Scalable 한 Deep Learning Production 을 위한 AI Serving Infra 구성 및 AI DevOps...Auto Scalable 한 Deep Learning Production 을 위한 AI Serving Infra 구성 및 AI DevOps...
Auto Scalable 한 Deep Learning Production 을 위한 AI Serving Infra 구성 및 AI DevOps...hoondong kim
 
[IDG Tech Webinar] “클라우드 비용, 더 아낄 수 있다” 실전 클라우드 비용 최적화 가이드
[IDG Tech Webinar] “클라우드 비용, 더 아낄 수 있다” 실전 클라우드 비용 최적화 가이드[IDG Tech Webinar] “클라우드 비용, 더 아낄 수 있다” 실전 클라우드 비용 최적화 가이드
[IDG Tech Webinar] “클라우드 비용, 더 아낄 수 있다” 실전 클라우드 비용 최적화 가이드BESPIN GLOBAL
 
Cloud based NGS framework
Cloud based NGS frameworkCloud based NGS framework
Cloud based NGS frameworkHyungyong Kim
 

Similaire à 작고 빠른 딥러닝 그리고 Edge computing (20)

딥러닝 논문읽기 efficient netv2 논문리뷰
딥러닝 논문읽기 efficient netv2  논문리뷰딥러닝 논문읽기 efficient netv2  논문리뷰
딥러닝 논문읽기 efficient netv2 논문리뷰
 
History of Vision AI
History of Vision AIHistory of Vision AI
History of Vision AI
 
[Paper] shuffle net an extremely efficient convolutional neural network for ...
[Paper] shuffle net  an extremely efficient convolutional neural network for ...[Paper] shuffle net  an extremely efficient convolutional neural network for ...
[Paper] shuffle net an extremely efficient convolutional neural network for ...
 
LeNet & GoogLeNet
LeNet & GoogLeNetLeNet & GoogLeNet
LeNet & GoogLeNet
 
네트워크 경량화 이모저모 @ 2020 DLD
네트워크 경량화 이모저모 @ 2020 DLD네트워크 경량화 이모저모 @ 2020 DLD
네트워크 경량화 이모저모 @ 2020 DLD
 
A Beginner's guide to understanding Autoencoder
A Beginner's guide to understanding AutoencoderA Beginner's guide to understanding Autoencoder
A Beginner's guide to understanding Autoencoder
 
Designing more efficient convolution neural network
Designing more efficient convolution neural networkDesigning more efficient convolution neural network
Designing more efficient convolution neural network
 
Designing more efficient convolution neural network
Designing more efficient convolution neural networkDesigning more efficient convolution neural network
Designing more efficient convolution neural network
 
스마트폰 위의 딥러닝
스마트폰 위의 딥러닝스마트폰 위의 딥러닝
스마트폰 위의 딥러닝
 
클라우드 비용 최적화 가이드
클라우드 비용 최적화 가이드클라우드 비용 최적화 가이드
클라우드 비용 최적화 가이드
 
Image Deep Learning 실무적용
Image Deep Learning 실무적용Image Deep Learning 실무적용
Image Deep Learning 실무적용
 
Node.js + Websocket 삽질기
Node.js + Websocket 삽질기Node.js + Websocket 삽질기
Node.js + Websocket 삽질기
 
밑바닥부터 시작하는딥러닝 8장
밑바닥부터 시작하는딥러닝 8장밑바닥부터 시작하는딥러닝 8장
밑바닥부터 시작하는딥러닝 8장
 
[AWS & 베스핀글로벌 - 스타트업, 클라우드에 날개를 달자! 세미나] 효과적으로 클라우드 사용하기
[AWS & 베스핀글로벌 - 스타트업, 클라우드에 날개를 달자! 세미나] 효과적으로 클라우드 사용하기[AWS & 베스핀글로벌 - 스타트업, 클라우드에 날개를 달자! 세미나] 효과적으로 클라우드 사용하기
[AWS & 베스핀글로벌 - 스타트업, 클라우드에 날개를 달자! 세미나] 효과적으로 클라우드 사용하기
 
Basics of deep learning_imcloud
Basics of deep learning_imcloudBasics of deep learning_imcloud
Basics of deep learning_imcloud
 
Deep learning overview
Deep learning overviewDeep learning overview
Deep learning overview
 
Auto Scalable 한 Deep Learning Production 을 위한 AI Serving Infra 구성 및 AI DevOps...
Auto Scalable 한 Deep Learning Production 을 위한 AI Serving Infra 구성 및 AI DevOps...Auto Scalable 한 Deep Learning Production 을 위한 AI Serving Infra 구성 및 AI DevOps...
Auto Scalable 한 Deep Learning Production 을 위한 AI Serving Infra 구성 및 AI DevOps...
 
[IDG Tech Webinar] “클라우드 비용, 더 아낄 수 있다” 실전 클라우드 비용 최적화 가이드
[IDG Tech Webinar] “클라우드 비용, 더 아낄 수 있다” 실전 클라우드 비용 최적화 가이드[IDG Tech Webinar] “클라우드 비용, 더 아낄 수 있다” 실전 클라우드 비용 최적화 가이드
[IDG Tech Webinar] “클라우드 비용, 더 아낄 수 있다” 실전 클라우드 비용 최적화 가이드
 
Net adapt
Net adaptNet adapt
Net adapt
 
Cloud based NGS framework
Cloud based NGS frameworkCloud based NGS framework
Cloud based NGS framework
 

Dernier

JMP가 걸어온 여정, 새로운 도약 JMP 18!
JMP가 걸어온 여정, 새로운 도약 JMP 18!JMP가 걸어온 여정, 새로운 도약 JMP 18!
JMP가 걸어온 여정, 새로운 도약 JMP 18!JMP Korea
 
JMP를 활용한 전자/반도체 산업 Yield Enhancement Methodology
JMP를 활용한 전자/반도체 산업 Yield Enhancement MethodologyJMP를 활용한 전자/반도체 산업 Yield Enhancement Methodology
JMP를 활용한 전자/반도체 산업 Yield Enhancement MethodologyJMP Korea
 
JMP 기능의 확장 및 내재화의 핵심 JMP-Python 소개
JMP 기능의 확장 및 내재화의 핵심 JMP-Python 소개JMP 기능의 확장 및 내재화의 핵심 JMP-Python 소개
JMP 기능의 확장 및 내재화의 핵심 JMP-Python 소개JMP Korea
 
공학 관점에서 바라본 JMP 머신러닝 최적화
공학 관점에서 바라본 JMP 머신러닝 최적화공학 관점에서 바라본 JMP 머신러닝 최적화
공학 관점에서 바라본 JMP 머신러닝 최적화JMP Korea
 
실험 설계의 평가 방법: Custom Design을 중심으로 반응인자 최적화 및 Criteria 해석
실험 설계의 평가 방법: Custom Design을 중심으로 반응인자 최적화 및 Criteria 해석실험 설계의 평가 방법: Custom Design을 중심으로 반응인자 최적화 및 Criteria 해석
실험 설계의 평가 방법: Custom Design을 중심으로 반응인자 최적화 및 Criteria 해석JMP Korea
 
JMP를 활용한 가속열화 분석 사례
JMP를 활용한 가속열화 분석 사례JMP를 활용한 가속열화 분석 사례
JMP를 활용한 가속열화 분석 사례JMP Korea
 
(독서광) 인간이 초대한 대형 참사 - 대형 참사가 일어날 때까지 사람들은 무엇을 하고 있었는가?
(독서광) 인간이 초대한 대형 참사 - 대형 참사가 일어날 때까지 사람들은 무엇을 하고 있었는가?(독서광) 인간이 초대한 대형 참사 - 대형 참사가 일어날 때까지 사람들은 무엇을 하고 있었는가?
(독서광) 인간이 초대한 대형 참사 - 대형 참사가 일어날 때까지 사람들은 무엇을 하고 있었는가?Jay Park
 
데이터 분석 문제 해결을 위한 나의 JMP 활용법
데이터 분석 문제 해결을 위한 나의 JMP 활용법데이터 분석 문제 해결을 위한 나의 JMP 활용법
데이터 분석 문제 해결을 위한 나의 JMP 활용법JMP Korea
 

Dernier (8)

JMP가 걸어온 여정, 새로운 도약 JMP 18!
JMP가 걸어온 여정, 새로운 도약 JMP 18!JMP가 걸어온 여정, 새로운 도약 JMP 18!
JMP가 걸어온 여정, 새로운 도약 JMP 18!
 
JMP를 활용한 전자/반도체 산업 Yield Enhancement Methodology
JMP를 활용한 전자/반도체 산업 Yield Enhancement MethodologyJMP를 활용한 전자/반도체 산업 Yield Enhancement Methodology
JMP를 활용한 전자/반도체 산업 Yield Enhancement Methodology
 
JMP 기능의 확장 및 내재화의 핵심 JMP-Python 소개
JMP 기능의 확장 및 내재화의 핵심 JMP-Python 소개JMP 기능의 확장 및 내재화의 핵심 JMP-Python 소개
JMP 기능의 확장 및 내재화의 핵심 JMP-Python 소개
 
공학 관점에서 바라본 JMP 머신러닝 최적화
공학 관점에서 바라본 JMP 머신러닝 최적화공학 관점에서 바라본 JMP 머신러닝 최적화
공학 관점에서 바라본 JMP 머신러닝 최적화
 
실험 설계의 평가 방법: Custom Design을 중심으로 반응인자 최적화 및 Criteria 해석
실험 설계의 평가 방법: Custom Design을 중심으로 반응인자 최적화 및 Criteria 해석실험 설계의 평가 방법: Custom Design을 중심으로 반응인자 최적화 및 Criteria 해석
실험 설계의 평가 방법: Custom Design을 중심으로 반응인자 최적화 및 Criteria 해석
 
JMP를 활용한 가속열화 분석 사례
JMP를 활용한 가속열화 분석 사례JMP를 활용한 가속열화 분석 사례
JMP를 활용한 가속열화 분석 사례
 
(독서광) 인간이 초대한 대형 참사 - 대형 참사가 일어날 때까지 사람들은 무엇을 하고 있었는가?
(독서광) 인간이 초대한 대형 참사 - 대형 참사가 일어날 때까지 사람들은 무엇을 하고 있었는가?(독서광) 인간이 초대한 대형 참사 - 대형 참사가 일어날 때까지 사람들은 무엇을 하고 있었는가?
(독서광) 인간이 초대한 대형 참사 - 대형 참사가 일어날 때까지 사람들은 무엇을 하고 있었는가?
 
데이터 분석 문제 해결을 위한 나의 JMP 활용법
데이터 분석 문제 해결을 위한 나의 JMP 활용법데이터 분석 문제 해결을 위한 나의 JMP 활용법
데이터 분석 문제 해결을 위한 나의 JMP 활용법
 

작고 빠른 딥러닝 그리고 Edge computing