SlideShare a Scribd company logo
1 of 31
Download to read offline
https://dacon.io
AI프렌즈 시즌1
공공데이터를 활용한
온도추정 경진대회
최상혁
목차
1
2
3
STEP 1
STEP 2
STEP 3
https://dacon.io 2
EDA & 데이터 전처리
모델 구축 & 검증
결과 및 결언
EDA & 데이터 전처리
모델 구축 & 검증
결과 및 결언
• Single Model
• Multi Model
• Conclusion
• Suggestions
• Library & Loading
• Cleansing
• Feature Engineering
• Feature Selection
https://dacon.io 3
1. EDA & 데이터 전처리 : Library & Loading
https://dacon.io 4
1. EDA & 데이터 전처리 : Library & Loading
https://dacon.io 5
1. EDA & 데이터 전처리1. EDA & 데이터 전처리 : Cleansing
https://dacon.io 6
1. EDA & 데이터 전처리 : Feature Engineering
일일 누적 -> 1시간 누적
https://dacon.io 7
1. EDA & 데이터 전처리 : Feature Engineering
Before After
일사량
Time
일사량
Time
일사량 일사량
Y 평균
or Y18
Y 평균
or Y18
해 뜨기 전 해 진 후
https://dacon.io 8
1. EDA & 데이터 전처리 : Feature Selection
기온 vs mean of Ys / Y18
●파란색 : Train1 Data
●빨간색 : Train2 Data
일사량 vs mean of Ys / Y18
습도 vs mean of Ys / Y18
기온
일사량
습도
https://dacon.io 9
기온, 일사량, 습도 외
나머지 feature들은 모두 Drop!
1. EDA & 데이터 전처리 : Feature Selection
https://dacon.io 10
1. EDA & 데이터 전처리 : Feature Engineering
기온과 습도 각각에서 몇개의 변수들로 mean features를 생성
<- X00 제외
<- X12, X20 제외
https://dacon.io
1. EDA & 데이터 전처리 : Feature Engineering
그림자?
↓
Negative
Insolation
(- insolation)
11
https://dacon.io 12
1. EDA & 데이터 전처리 : Feature Selection
Noisy Feature를 찾아서 제거!
https://dacon.io 13
2. 모델 구축 & 검증 : Single Model
Y00
-
Y17
Y00
-
Y17
Predict
Predict
Fit
XTest :
Y00
-
Y17
XTrain 1 :
XTrain 2 : Y18Fit
Y18Predict
Evaluation :
Training score ,
Visualization,
Public score
Learning Algorithm :
Lasso (LassoCV)
= "Y들"
단순한 구조!!
https://dacon.io 14
2. 모델 구축 & 검증 : Single Model
https://dacon.io 15
2. 모델 구축 & 검증 : Single Model
X['time'] = X.index % 144
Day Time : [34 – 100] Night Time : [0 – 33] & [101 - 143]
test
Y18
Day index = 33 / Night index = 100
https://dacon.io 16
2. 모델 구축 & 검증 : Single Model
https://dacon.io 17
2. 모델 구축 & 검증 : Multi Model
Day index = 21 / Night index = 91 Day index = 21 / Night index = 93 Day index = 21 / Night index = 95
Day index = 43 / Night index = 103 Day index = 43 / Night index = 105 Day index = 43 / Night index = 107
·····
Y18
Day index : np.arange(21, 44, 2) <- 12개
Night index : np.arange(91, 108, 2) <- 9개
# of Sub models : 12 * 9 = 108
"Sub model"
https://dacon.io 18
2. 모델 구축 & 검증 : Single Model
Day index = 21 / Night index = 91
·····
Fit
Y00
-
Y17
X
Day Time : [15 – 85]
Predict
Y00
-
Y17
X
Train1 :
Train2 :
Fit
Y00
-
Y17
X
Day Time : [18 – 85]
Predict
Y00
-
Y17
X
Train1 :
Train2 :
Fit
Y00
-
Y17
X
Day Time : [21 – 85]
Predict
Y00
-
Y17
X
Train1 :
Train2 :
Fit
Y00
-
Y17
X
Day Time : [21 – 97]
Predict
Y00
-
Y17
X
Train1 :
Train2 :
Fit
Y00
-
Y17
X
Day Time : [24 – 97]
Predict
Y00
-
Y17
X
Train1 :
Train2 :
Fit
Y00
-
Y17
X
Day Time : [27 – 97]
Predict
Y00
-
Y17
X
Train1 :
Train2 :
Day index extended = [15, 18, 21, 24, 27] / Night index extended = [85, 88, 91, 94, 97]
np.meshgrid([15, 18, 21, 24, 27], [85, 88, 91, 94, 97]) <- 총 25개
"Sub-sub model"
↑ Day 예시
Night도 똑같음
Y00
-
Y17
# Sub-sub models : 5 * 5 = 25
https://dacon.io 19
2. 모델 구축 & 검증 : Multi Model
Day index = 21 / Night index = 91 Day index = 21 / Night index = 93 Day index = 21 / Night index = 95
Day index = 43 / Night index = 103 Day index = 43 / Night index = 105 Day index = 43 / Night index = 107
·····
Y18
× 25 × 25 × 25 × 25 × 25 × 25
× 25× 25× 25× 25× 25× 25
# Sub models : 12 * 9 = 108 108 (# Sub models) * 2 (day, night)
* 25 (# Sub-sub models) * 18 (Y00~Y17)
= 97200
https://dacon.io 20
2. 모델 구축 & 검증 : Multi Model
·
·
·
다시 Fit 할 필요 없이 바로 Predict 가능
일반적인 model
Train_X Train_YFit
Predict Test Y_pred
Predict2 Test2 Y_pred2
https://dacon.io 21
2. 모델 구축 & 검증 : Multi Model
Day index = 21 / Night index = 91 Day index = 21 / Night index = 93 Day index = 21 / Night index = 95
Day index = 43 / Night index = 103 Day index = 43 / Night index = 105 Day index = 43 / Night index = 107
·····
Y18
Test2 Test2 Test2 Test2 Test2 Test2
Test2Test2Test2Test2Test2Test2
× 25 × 25 × 25 × 25 × 25 × 25
× 25× 25× 25× 25× 25× 25
Test2다시 Training...?
108 (# Sub models) * 2 (day, night)
* 25 (# Sub-sub models) * 18 (Y00~Y17)
= 97200
https://dacon.io
2. 모델 구축 & 검증 : Multi Model
× 25
Y00
-
Y17
Y00
-
Y17
Predict
Predict
Fit
XTest :
Y00
-
Y17
XTrain 1 :
XTrain 2 : Y18Fit
Y18Predict
Y00
-
Y17
Predict
Fit
Y00
-
Y17
XTrain 1 :
XTrain 2 : Y18Fit
× 25
model1.coef_ Y00 Y01 Y02
X00 0.1 2.1 1.5
X01 2.7 3.4 5.1
X02 6.3 5.7 3.3
Ys_Intercept 15.0 13.3 16.8
22
model2.coef_ Y18
Y00 0.5
Y01 1.2
Y02 -1.3
Y18_Intercept 2.1
model1
X -> {Y00-Y17}
model2
{Y00-Y17} -> Y18
X -> {Y00-Y17} {Y00-Y17} -> Y18
결과값이 아닌
Coefficients의 평균!
https://dacon.io 23
2. 모델 구축 & 검증 : Multi Model
model1.coef_ Y00 Y01 Y02
X00 0.1 2.1 1.5
X01 2.7 3.4 5.1
X02 6.3 5.7 3.3
Ys_Intercept 15.0 13.3 16.8
model2.coef_ Y18
Y00 0.5
Y01 1.2
Y02 -1.3
Y18_Intercept 2.1
[model1 + model2]
X -> {Y00-Y17} -> Y18
×
0.5
×
1.2
×
-1.3
model1 + model2 Y18
X00 0.62
X01 -1.2
X02 5.7
Ys_Intercept 1.62
Y18_Intercept 2.1
model1.coef_ Y00 Y01 Y02
X00 0.05 2.52 -1.95
X01 1.35 4.08 -6.63
X02 3.15 6.84 -4.29
Ys_Intercept 7.5 15.96 -21.84
Coefficients of
Mapping
X -> Y18
https://dacon.io 24
2. 모델 구축 & 검증 : Multi Model
Coefficients of
Mapping
X -> Y18
Y00
-
Y17
Predict
Fit
Y00
-
Y17
XTrain 1 :
XTrain 2 : Y18Fit
× 25
25
2. 모델 구축 & 검증 : Multi Model
Day Time : [34 – 100] Night Time : [0 – 33] & [101 - 143]
DAY
Coefs
NIGHT
Coefs
Time X00 X01 ··· neg_insol Ys_intercept Y18_intercept
0 1.3 0.0 ··· 0.0 3.8 1.2
1 1.3 0.0 ··· 0.0 3.8 1.2
··· 1.3 0.0 ··· 0.0 3.8 1.2
34 0.0 5.5 ··· -2.4 1.3 0.5
··· 0.0 5.5 ··· -2.4 1.3 0.5
100 0.0 5.5 ··· -2.4 1.3 0.5
··· 1.3 0.0 ··· 0.0 3.8 1.2
143 1.3 0.0 ··· 0.0 3.8 1.2
Day coefs
Night coefs
Night coefs
Coef_df :
Coefs_df
"Sub model"
https://dacon.io 26
2. 모델 구축 & 검증 : Multi Model
·····
Coefs_df
Day index = 21 / Night index = 93 Day index = 21 / Night index = 95Day index = 21 / Night index = 91
Day index = 43 / Night index = 103 Day index = 43 / Night index = 105 Day index = 43 / Night index = 107
# Sub models : 12 * 9 = 108
https://dacon.io 27
2. 모델 구축 & 검증 : Multi Model
time id X00 X01 ··· neg_insol Ys_intercept Y18_intercept
100 12340 26.1 45.0 ··· 1.1 1.0 1.0
101 12341 26.2 44.8 ··· 1.0 1.0 1.0
102 12342 26.4 44.2 ··· 0.8 1.0 1.0
Time X00 X01 ··· neg_insol Ys_intercept Y18_intercept
0 1.3 0.0 ··· 0.0 3.8 1.2
1 1.3 0.0 ··· 0.0 3.8 1.2
··· 1.3 0.0 ··· 0.0 3.8 1.2
34 0.3 7.8 ··· -0.6 2.5 1.1
··· 0.0 5.5 ··· -2.4 1.3 0.5
100 0.9 4.2 ··· -0.3 3.1 0.8
··· 1.3 0.0 ··· 0.0 3.8 1.2
143 1.3 0.0 ··· 0.0 3.8 1.2
Coefs_df :
Test:
(after preprocessing)
Dot Product!
https://dacon.io 28
3. 결과 및 결언 : Conclusion
Public score : 1.02845
Private score : 2.67974
https://dacon.io 29
3. 결과 및 결언 : Conclusion
https://dacon.io 30
3. 결과 및 결언 : Suggestion
맑은 날 vs 흐린 날을 구분할 수 있는
좀 더 정교한 feature를 도입했더라면...
다양한 알고리즘의 시도
+ Transfer Learning ?
THANK YOU
THANK YOU
https://dacon.io 31

More Related Content

Similar to 공공데이터를 활용한 특정지역 온도추정 경진대회 1위 수상작

"Ускорение сборки большого проекта на Objective-C + Swift" Иван Бондарь (Avito)
"Ускорение сборки большого проекта на Objective-C + Swift" Иван Бондарь (Avito)"Ускорение сборки большого проекта на Objective-C + Swift" Иван Бондарь (Avito)
"Ускорение сборки большого проекта на Objective-C + Swift" Иван Бондарь (Avito)AvitoTech
 
Deep Learning - Continuous Operations
Deep Learning - Continuous Operations Deep Learning - Continuous Operations
Deep Learning - Continuous Operations Haggai Philip Zagury
 
Никита Галкин "Testing in Frontend World"
Никита Галкин "Testing in Frontend World"Никита Галкин "Testing in Frontend World"
Никита Галкин "Testing in Frontend World"Fwdays
 
JavaScript Modules Past, Present and Future
JavaScript Modules Past, Present and FutureJavaScript Modules Past, Present and Future
JavaScript Modules Past, Present and FutureIgalia
 
Testing in FrontEnd World by Nikita Galkin
Testing in FrontEnd World by Nikita GalkinTesting in FrontEnd World by Nikita Galkin
Testing in FrontEnd World by Nikita GalkinSigma Software
 
Everything as a Code / Александр Тарасов (Одноклассники)
Everything as a Code / Александр Тарасов (Одноклассники)Everything as a Code / Александр Тарасов (Одноклассники)
Everything as a Code / Александр Тарасов (Одноклассники)Ontico
 
Testing Microservices @DevoxxBE 23.pdf
Testing Microservices @DevoxxBE 23.pdfTesting Microservices @DevoxxBE 23.pdf
Testing Microservices @DevoxxBE 23.pdfVictor Rentea
 
Finding Bugs, Fixing Bugs, Preventing Bugs - Exploiting Automated Tests to In...
Finding Bugs, Fixing Bugs, Preventing Bugs - Exploiting Automated Tests to In...Finding Bugs, Fixing Bugs, Preventing Bugs - Exploiting Automated Tests to In...
Finding Bugs, Fixing Bugs, Preventing Bugs - Exploiting Automated Tests to In...University of Antwerp
 
JFokus Java 9 contended locking performance
JFokus Java 9 contended locking performanceJFokus Java 9 contended locking performance
JFokus Java 9 contended locking performanceMonica Beckwith
 
SAST and Application Security: how to fight vulnerabilities in the code
SAST and Application Security: how to fight vulnerabilities in the codeSAST and Application Security: how to fight vulnerabilities in the code
SAST and Application Security: how to fight vulnerabilities in the codeAndrey Karpov
 
Session 3 - CloudStack Test Automation and CI
Session 3 - CloudStack Test Automation and CISession 3 - CloudStack Test Automation and CI
Session 3 - CloudStack Test Automation and CItcloudcomputing-tw
 
(automatic) Testing: from business to university and back
(automatic) Testing: from business to university and back(automatic) Testing: from business to university and back
(automatic) Testing: from business to university and backDavid Rodenas
 
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docxPRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docxharrisonhoward80223
 
Node.js Community Benchmarking WG update
Node.js Community  Benchmarking WG updateNode.js Community  Benchmarking WG update
Node.js Community Benchmarking WG updateMichael Dawson
 
Live deployment, ci, drupal
Live deployment, ci, drupalLive deployment, ci, drupal
Live deployment, ci, drupalAndrii Podanenko
 
Дмитрий Вовк: Векторизация кода под мобильные платформы
Дмитрий Вовк: Векторизация кода под мобильные платформыДмитрий Вовк: Векторизация кода под мобильные платформы
Дмитрий Вовк: Векторизация кода под мобильные платформыDevGAMM Conference
 

Similar to 공공데이터를 활용한 특정지역 온도추정 경진대회 1위 수상작 (20)

"Ускорение сборки большого проекта на Objective-C + Swift" Иван Бондарь (Avito)
"Ускорение сборки большого проекта на Objective-C + Swift" Иван Бондарь (Avito)"Ускорение сборки большого проекта на Objective-C + Swift" Иван Бондарь (Avito)
"Ускорение сборки большого проекта на Objective-C + Swift" Иван Бондарь (Avito)
 
Deep Learning - Continuous Operations
Deep Learning - Continuous Operations Deep Learning - Continuous Operations
Deep Learning - Continuous Operations
 
Никита Галкин "Testing in Frontend World"
Никита Галкин "Testing in Frontend World"Никита Галкин "Testing in Frontend World"
Никита Галкин "Testing in Frontend World"
 
JavaScript Modules Past, Present and Future
JavaScript Modules Past, Present and FutureJavaScript Modules Past, Present and Future
JavaScript Modules Past, Present and Future
 
Testing in FrontEnd World by Nikita Galkin
Testing in FrontEnd World by Nikita GalkinTesting in FrontEnd World by Nikita Galkin
Testing in FrontEnd World by Nikita Galkin
 
Everything as a Code / Александр Тарасов (Одноклассники)
Everything as a Code / Александр Тарасов (Одноклассники)Everything as a Code / Александр Тарасов (Одноклассники)
Everything as a Code / Александр Тарасов (Одноклассники)
 
Everything as a code
Everything as a codeEverything as a code
Everything as a code
 
Report
ReportReport
Report
 
Testing Microservices @DevoxxBE 23.pdf
Testing Microservices @DevoxxBE 23.pdfTesting Microservices @DevoxxBE 23.pdf
Testing Microservices @DevoxxBE 23.pdf
 
Performance tests - it's a trap
Performance tests - it's a trapPerformance tests - it's a trap
Performance tests - it's a trap
 
Finding Bugs, Fixing Bugs, Preventing Bugs - Exploiting Automated Tests to In...
Finding Bugs, Fixing Bugs, Preventing Bugs - Exploiting Automated Tests to In...Finding Bugs, Fixing Bugs, Preventing Bugs - Exploiting Automated Tests to In...
Finding Bugs, Fixing Bugs, Preventing Bugs - Exploiting Automated Tests to In...
 
JFokus Java 9 contended locking performance
JFokus Java 9 contended locking performanceJFokus Java 9 contended locking performance
JFokus Java 9 contended locking performance
 
SAST and Application Security: how to fight vulnerabilities in the code
SAST and Application Security: how to fight vulnerabilities in the codeSAST and Application Security: how to fight vulnerabilities in the code
SAST and Application Security: how to fight vulnerabilities in the code
 
Session 3 - CloudStack Test Automation and CI
Session 3 - CloudStack Test Automation and CISession 3 - CloudStack Test Automation and CI
Session 3 - CloudStack Test Automation and CI
 
Advanced Cassandra
Advanced CassandraAdvanced Cassandra
Advanced Cassandra
 
(automatic) Testing: from business to university and back
(automatic) Testing: from business to university and back(automatic) Testing: from business to university and back
(automatic) Testing: from business to university and back
 
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docxPRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
 
Node.js Community Benchmarking WG update
Node.js Community  Benchmarking WG updateNode.js Community  Benchmarking WG update
Node.js Community Benchmarking WG update
 
Live deployment, ci, drupal
Live deployment, ci, drupalLive deployment, ci, drupal
Live deployment, ci, drupal
 
Дмитрий Вовк: Векторизация кода под мобильные платформы
Дмитрий Вовк: Векторизация кода под мобильные платформыДмитрий Вовк: Векторизация кода под мобильные платформы
Дмитрий Вовк: Векторизация кода под мобильные платформы
 

More from DACON AI 데이콘

Introduction to e tapr for hai con -eng
Introduction to e tapr for hai con -engIntroduction to e tapr for hai con -eng
Introduction to e tapr for hai con -engDACON AI 데이콘
 
Introduction to e tapr for hai con -kor
Introduction to e tapr for hai con -korIntroduction to e tapr for hai con -kor
Introduction to e tapr for hai con -korDACON AI 데이콘
 
20210728 대회주최 문의
20210728 대회주최 문의20210728 대회주최 문의
20210728 대회주최 문의DACON AI 데이콘
 
K-Fashion 경진대회 1등 수상자 솔루션
K-Fashion 경진대회 1등 수상자 솔루션K-Fashion 경진대회 1등 수상자 솔루션
K-Fashion 경진대회 1등 수상자 솔루션DACON AI 데이콘
 
K-Fashion 경진대회 2등 수상자 솔루션
K-Fashion 경진대회 2등 수상자 솔루션K-Fashion 경진대회 2등 수상자 솔루션
K-Fashion 경진대회 2등 수상자 솔루션DACON AI 데이콘
 
아리랑 위성영상 AI 객체 검출 경진대회 2등 수상자 솔루션
아리랑 위성영상 AI 객체 검출 경진대회 2등 수상자 솔루션아리랑 위성영상 AI 객체 검출 경진대회 2등 수상자 솔루션
아리랑 위성영상 AI 객체 검출 경진대회 2등 수상자 솔루션DACON AI 데이콘
 
아리랑 위성영상 AI 객체 검출 경진대회 1등 수상자 솔루션
아리랑 위성영상 AI 객체 검출 경진대회 1등 수상자 솔루션아리랑 위성영상 AI 객체 검출 경진대회 1등 수상자 솔루션
아리랑 위성영상 AI 객체 검출 경진대회 1등 수상자 솔루션DACON AI 데이콘
 
진동데이터 활용 충돌체 탐지 AI 경진대회 2등
진동데이터 활용 충돌체 탐지 AI 경진대회 2등진동데이터 활용 충돌체 탐지 AI 경진대회 2등
진동데이터 활용 충돌체 탐지 AI 경진대회 2등DACON AI 데이콘
 
포스트 코로나 데이터 시각화 경진대회 - 대상
포스트 코로나 데이터 시각화 경진대회 - 대상포스트 코로나 데이터 시각화 경진대회 - 대상
포스트 코로나 데이터 시각화 경진대회 - 대상DACON AI 데이콘
 
포스트 코로나 데이터 시각화 경진대회 - 최우수상
포스트 코로나 데이터 시각화 경진대회 - 최우수상포스트 코로나 데이터 시각화 경진대회 - 최우수상
포스트 코로나 데이터 시각화 경진대회 - 최우수상DACON AI 데이콘
 
포스트 코로나 데이터 시각화 경진대회 - 우수상
포스트 코로나 데이터 시각화 경진대회 - 우수상포스트 코로나 데이터 시각화 경진대회 - 우수상
포스트 코로나 데이터 시각화 경진대회 - 우수상DACON AI 데이콘
 
포스트 코로나 데이터 시각화 경진대회 - 장려상2
포스트 코로나 데이터 시각화 경진대회 - 장려상2포스트 코로나 데이터 시각화 경진대회 - 장려상2
포스트 코로나 데이터 시각화 경진대회 - 장려상2DACON AI 데이콘
 
포스트 코로나 데이터 시각화 경진대회 - 장려상
포스트 코로나 데이터 시각화 경진대회 - 장려상포스트 코로나 데이터 시각화 경진대회 - 장려상
포스트 코로나 데이터 시각화 경진대회 - 장려상DACON AI 데이콘
 
생체 광학 데이터 분석 AI 경진대회 10위 수상작
생체 광학 데이터 분석 AI 경진대회 10위 수상작생체 광학 데이터 분석 AI 경진대회 10위 수상작
생체 광학 데이터 분석 AI 경진대회 10위 수상작DACON AI 데이콘
 
생체 광학 데이터 분석 AI 경진대회 9위 수상작
생체 광학 데이터 분석 AI 경진대회 9위 수상작생체 광학 데이터 분석 AI 경진대회 9위 수상작
생체 광학 데이터 분석 AI 경진대회 9위 수상작DACON AI 데이콘
 

More from DACON AI 데이콘 (20)

Introduction to e tapr for hai con -eng
Introduction to e tapr for hai con -engIntroduction to e tapr for hai con -eng
Introduction to e tapr for hai con -eng
 
Introduction to e tapr for hai con -kor
Introduction to e tapr for hai con -korIntroduction to e tapr for hai con -kor
Introduction to e tapr for hai con -kor
 
20210728 대회주최 문의
20210728 대회주최 문의20210728 대회주최 문의
20210728 대회주최 문의
 
데이콘 뽀개기
데이콘 뽀개기데이콘 뽀개기
데이콘 뽀개기
 
Bittrader competition (1)
Bittrader competition (1)Bittrader competition (1)
Bittrader competition (1)
 
Bittrader competition
Bittrader competitionBittrader competition
Bittrader competition
 
Superbai
SuperbaiSuperbai
Superbai
 
K-Fashion 경진대회 1등 수상자 솔루션
K-Fashion 경진대회 1등 수상자 솔루션K-Fashion 경진대회 1등 수상자 솔루션
K-Fashion 경진대회 1등 수상자 솔루션
 
K-Fashion 경진대회 2등 수상자 솔루션
K-Fashion 경진대회 2등 수상자 솔루션K-Fashion 경진대회 2등 수상자 솔루션
K-Fashion 경진대회 2등 수상자 솔루션
 
아리랑 위성영상 AI 객체 검출 경진대회 2등 수상자 솔루션
아리랑 위성영상 AI 객체 검출 경진대회 2등 수상자 솔루션아리랑 위성영상 AI 객체 검출 경진대회 2등 수상자 솔루션
아리랑 위성영상 AI 객체 검출 경진대회 2등 수상자 솔루션
 
아리랑 위성영상 AI 객체 검출 경진대회 1등 수상자 솔루션
아리랑 위성영상 AI 객체 검출 경진대회 1등 수상자 솔루션아리랑 위성영상 AI 객체 검출 경진대회 1등 수상자 솔루션
아리랑 위성영상 AI 객체 검출 경진대회 1등 수상자 솔루션
 
진동데이터 활용 충돌체 탐지 AI 경진대회 2등
진동데이터 활용 충돌체 탐지 AI 경진대회 2등진동데이터 활용 충돌체 탐지 AI 경진대회 2등
진동데이터 활용 충돌체 탐지 AI 경진대회 2등
 
20200923
2020092320200923
20200923
 
포스트 코로나 데이터 시각화 경진대회 - 대상
포스트 코로나 데이터 시각화 경진대회 - 대상포스트 코로나 데이터 시각화 경진대회 - 대상
포스트 코로나 데이터 시각화 경진대회 - 대상
 
포스트 코로나 데이터 시각화 경진대회 - 최우수상
포스트 코로나 데이터 시각화 경진대회 - 최우수상포스트 코로나 데이터 시각화 경진대회 - 최우수상
포스트 코로나 데이터 시각화 경진대회 - 최우수상
 
포스트 코로나 데이터 시각화 경진대회 - 우수상
포스트 코로나 데이터 시각화 경진대회 - 우수상포스트 코로나 데이터 시각화 경진대회 - 우수상
포스트 코로나 데이터 시각화 경진대회 - 우수상
 
포스트 코로나 데이터 시각화 경진대회 - 장려상2
포스트 코로나 데이터 시각화 경진대회 - 장려상2포스트 코로나 데이터 시각화 경진대회 - 장려상2
포스트 코로나 데이터 시각화 경진대회 - 장려상2
 
포스트 코로나 데이터 시각화 경진대회 - 장려상
포스트 코로나 데이터 시각화 경진대회 - 장려상포스트 코로나 데이터 시각화 경진대회 - 장려상
포스트 코로나 데이터 시각화 경진대회 - 장려상
 
생체 광학 데이터 분석 AI 경진대회 10위 수상작
생체 광학 데이터 분석 AI 경진대회 10위 수상작생체 광학 데이터 분석 AI 경진대회 10위 수상작
생체 광학 데이터 분석 AI 경진대회 10위 수상작
 
생체 광학 데이터 분석 AI 경진대회 9위 수상작
생체 광학 데이터 분석 AI 경진대회 9위 수상작생체 광학 데이터 분석 AI 경진대회 9위 수상작
생체 광학 데이터 분석 AI 경진대회 9위 수상작
 

Recently uploaded

dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptSonatrach
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingNeil Barnes
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfLars Albertsson
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSAishani27
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfSocial Samosa
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改atducpo
 
Data Science Project: Advancements in Fetal Health Classification
Data Science Project: Advancements in Fetal Health ClassificationData Science Project: Advancements in Fetal Health Classification
Data Science Project: Advancements in Fetal Health ClassificationBoston Institute of Analytics
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfgstagge
 
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...Suhani Kapoor
 
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Service
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Service
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Servicejennyeacort
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiSuhani Kapoor
 

Recently uploaded (20)

dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data Storytelling
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdf
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICS
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
 
Data Science Project: Advancements in Fetal Health Classification
Data Science Project: Advancements in Fetal Health ClassificationData Science Project: Advancements in Fetal Health Classification
Data Science Project: Advancements in Fetal Health Classification
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdf
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
 
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Service
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Service
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Service
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
 

공공데이터를 활용한 특정지역 온도추정 경진대회 1위 수상작

  • 2. 목차 1 2 3 STEP 1 STEP 2 STEP 3 https://dacon.io 2 EDA & 데이터 전처리 모델 구축 & 검증 결과 및 결언 EDA & 데이터 전처리 모델 구축 & 검증 결과 및 결언 • Single Model • Multi Model • Conclusion • Suggestions • Library & Loading • Cleansing • Feature Engineering • Feature Selection
  • 3. https://dacon.io 3 1. EDA & 데이터 전처리 : Library & Loading
  • 4. https://dacon.io 4 1. EDA & 데이터 전처리 : Library & Loading
  • 5. https://dacon.io 5 1. EDA & 데이터 전처리1. EDA & 데이터 전처리 : Cleansing
  • 6. https://dacon.io 6 1. EDA & 데이터 전처리 : Feature Engineering 일일 누적 -> 1시간 누적
  • 7. https://dacon.io 7 1. EDA & 데이터 전처리 : Feature Engineering Before After 일사량 Time 일사량 Time 일사량 일사량 Y 평균 or Y18 Y 평균 or Y18 해 뜨기 전 해 진 후
  • 8. https://dacon.io 8 1. EDA & 데이터 전처리 : Feature Selection 기온 vs mean of Ys / Y18 ●파란색 : Train1 Data ●빨간색 : Train2 Data 일사량 vs mean of Ys / Y18 습도 vs mean of Ys / Y18 기온 일사량 습도
  • 9. https://dacon.io 9 기온, 일사량, 습도 외 나머지 feature들은 모두 Drop! 1. EDA & 데이터 전처리 : Feature Selection
  • 10. https://dacon.io 10 1. EDA & 데이터 전처리 : Feature Engineering 기온과 습도 각각에서 몇개의 변수들로 mean features를 생성 <- X00 제외 <- X12, X20 제외
  • 11. https://dacon.io 1. EDA & 데이터 전처리 : Feature Engineering 그림자? ↓ Negative Insolation (- insolation) 11
  • 12. https://dacon.io 12 1. EDA & 데이터 전처리 : Feature Selection Noisy Feature를 찾아서 제거!
  • 13. https://dacon.io 13 2. 모델 구축 & 검증 : Single Model Y00 - Y17 Y00 - Y17 Predict Predict Fit XTest : Y00 - Y17 XTrain 1 : XTrain 2 : Y18Fit Y18Predict Evaluation : Training score , Visualization, Public score Learning Algorithm : Lasso (LassoCV) = "Y들" 단순한 구조!!
  • 14. https://dacon.io 14 2. 모델 구축 & 검증 : Single Model
  • 15. https://dacon.io 15 2. 모델 구축 & 검증 : Single Model X['time'] = X.index % 144 Day Time : [34 – 100] Night Time : [0 – 33] & [101 - 143] test Y18 Day index = 33 / Night index = 100
  • 16. https://dacon.io 16 2. 모델 구축 & 검증 : Single Model
  • 17. https://dacon.io 17 2. 모델 구축 & 검증 : Multi Model Day index = 21 / Night index = 91 Day index = 21 / Night index = 93 Day index = 21 / Night index = 95 Day index = 43 / Night index = 103 Day index = 43 / Night index = 105 Day index = 43 / Night index = 107 ····· Y18 Day index : np.arange(21, 44, 2) <- 12개 Night index : np.arange(91, 108, 2) <- 9개 # of Sub models : 12 * 9 = 108 "Sub model"
  • 18. https://dacon.io 18 2. 모델 구축 & 검증 : Single Model Day index = 21 / Night index = 91 ····· Fit Y00 - Y17 X Day Time : [15 – 85] Predict Y00 - Y17 X Train1 : Train2 : Fit Y00 - Y17 X Day Time : [18 – 85] Predict Y00 - Y17 X Train1 : Train2 : Fit Y00 - Y17 X Day Time : [21 – 85] Predict Y00 - Y17 X Train1 : Train2 : Fit Y00 - Y17 X Day Time : [21 – 97] Predict Y00 - Y17 X Train1 : Train2 : Fit Y00 - Y17 X Day Time : [24 – 97] Predict Y00 - Y17 X Train1 : Train2 : Fit Y00 - Y17 X Day Time : [27 – 97] Predict Y00 - Y17 X Train1 : Train2 : Day index extended = [15, 18, 21, 24, 27] / Night index extended = [85, 88, 91, 94, 97] np.meshgrid([15, 18, 21, 24, 27], [85, 88, 91, 94, 97]) <- 총 25개 "Sub-sub model" ↑ Day 예시 Night도 똑같음 Y00 - Y17 # Sub-sub models : 5 * 5 = 25
  • 19. https://dacon.io 19 2. 모델 구축 & 검증 : Multi Model Day index = 21 / Night index = 91 Day index = 21 / Night index = 93 Day index = 21 / Night index = 95 Day index = 43 / Night index = 103 Day index = 43 / Night index = 105 Day index = 43 / Night index = 107 ····· Y18 × 25 × 25 × 25 × 25 × 25 × 25 × 25× 25× 25× 25× 25× 25 # Sub models : 12 * 9 = 108 108 (# Sub models) * 2 (day, night) * 25 (# Sub-sub models) * 18 (Y00~Y17) = 97200
  • 20. https://dacon.io 20 2. 모델 구축 & 검증 : Multi Model · · · 다시 Fit 할 필요 없이 바로 Predict 가능 일반적인 model Train_X Train_YFit Predict Test Y_pred Predict2 Test2 Y_pred2
  • 21. https://dacon.io 21 2. 모델 구축 & 검증 : Multi Model Day index = 21 / Night index = 91 Day index = 21 / Night index = 93 Day index = 21 / Night index = 95 Day index = 43 / Night index = 103 Day index = 43 / Night index = 105 Day index = 43 / Night index = 107 ····· Y18 Test2 Test2 Test2 Test2 Test2 Test2 Test2Test2Test2Test2Test2Test2 × 25 × 25 × 25 × 25 × 25 × 25 × 25× 25× 25× 25× 25× 25 Test2다시 Training...? 108 (# Sub models) * 2 (day, night) * 25 (# Sub-sub models) * 18 (Y00~Y17) = 97200
  • 22. https://dacon.io 2. 모델 구축 & 검증 : Multi Model × 25 Y00 - Y17 Y00 - Y17 Predict Predict Fit XTest : Y00 - Y17 XTrain 1 : XTrain 2 : Y18Fit Y18Predict Y00 - Y17 Predict Fit Y00 - Y17 XTrain 1 : XTrain 2 : Y18Fit × 25 model1.coef_ Y00 Y01 Y02 X00 0.1 2.1 1.5 X01 2.7 3.4 5.1 X02 6.3 5.7 3.3 Ys_Intercept 15.0 13.3 16.8 22 model2.coef_ Y18 Y00 0.5 Y01 1.2 Y02 -1.3 Y18_Intercept 2.1 model1 X -> {Y00-Y17} model2 {Y00-Y17} -> Y18 X -> {Y00-Y17} {Y00-Y17} -> Y18 결과값이 아닌 Coefficients의 평균!
  • 23. https://dacon.io 23 2. 모델 구축 & 검증 : Multi Model model1.coef_ Y00 Y01 Y02 X00 0.1 2.1 1.5 X01 2.7 3.4 5.1 X02 6.3 5.7 3.3 Ys_Intercept 15.0 13.3 16.8 model2.coef_ Y18 Y00 0.5 Y01 1.2 Y02 -1.3 Y18_Intercept 2.1 [model1 + model2] X -> {Y00-Y17} -> Y18 × 0.5 × 1.2 × -1.3 model1 + model2 Y18 X00 0.62 X01 -1.2 X02 5.7 Ys_Intercept 1.62 Y18_Intercept 2.1 model1.coef_ Y00 Y01 Y02 X00 0.05 2.52 -1.95 X01 1.35 4.08 -6.63 X02 3.15 6.84 -4.29 Ys_Intercept 7.5 15.96 -21.84 Coefficients of Mapping X -> Y18
  • 24. https://dacon.io 24 2. 모델 구축 & 검증 : Multi Model Coefficients of Mapping X -> Y18 Y00 - Y17 Predict Fit Y00 - Y17 XTrain 1 : XTrain 2 : Y18Fit × 25
  • 25. 25 2. 모델 구축 & 검증 : Multi Model Day Time : [34 – 100] Night Time : [0 – 33] & [101 - 143] DAY Coefs NIGHT Coefs Time X00 X01 ··· neg_insol Ys_intercept Y18_intercept 0 1.3 0.0 ··· 0.0 3.8 1.2 1 1.3 0.0 ··· 0.0 3.8 1.2 ··· 1.3 0.0 ··· 0.0 3.8 1.2 34 0.0 5.5 ··· -2.4 1.3 0.5 ··· 0.0 5.5 ··· -2.4 1.3 0.5 100 0.0 5.5 ··· -2.4 1.3 0.5 ··· 1.3 0.0 ··· 0.0 3.8 1.2 143 1.3 0.0 ··· 0.0 3.8 1.2 Day coefs Night coefs Night coefs Coef_df : Coefs_df "Sub model"
  • 26. https://dacon.io 26 2. 모델 구축 & 검증 : Multi Model ····· Coefs_df Day index = 21 / Night index = 93 Day index = 21 / Night index = 95Day index = 21 / Night index = 91 Day index = 43 / Night index = 103 Day index = 43 / Night index = 105 Day index = 43 / Night index = 107 # Sub models : 12 * 9 = 108
  • 27. https://dacon.io 27 2. 모델 구축 & 검증 : Multi Model time id X00 X01 ··· neg_insol Ys_intercept Y18_intercept 100 12340 26.1 45.0 ··· 1.1 1.0 1.0 101 12341 26.2 44.8 ··· 1.0 1.0 1.0 102 12342 26.4 44.2 ··· 0.8 1.0 1.0 Time X00 X01 ··· neg_insol Ys_intercept Y18_intercept 0 1.3 0.0 ··· 0.0 3.8 1.2 1 1.3 0.0 ··· 0.0 3.8 1.2 ··· 1.3 0.0 ··· 0.0 3.8 1.2 34 0.3 7.8 ··· -0.6 2.5 1.1 ··· 0.0 5.5 ··· -2.4 1.3 0.5 100 0.9 4.2 ··· -0.3 3.1 0.8 ··· 1.3 0.0 ··· 0.0 3.8 1.2 143 1.3 0.0 ··· 0.0 3.8 1.2 Coefs_df : Test: (after preprocessing) Dot Product!
  • 28. https://dacon.io 28 3. 결과 및 결언 : Conclusion Public score : 1.02845 Private score : 2.67974
  • 29. https://dacon.io 29 3. 결과 및 결언 : Conclusion
  • 30. https://dacon.io 30 3. 결과 및 결언 : Suggestion 맑은 날 vs 흐린 날을 구분할 수 있는 좀 더 정교한 feature를 도입했더라면... 다양한 알고리즘의 시도 + Transfer Learning ?