SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 10 | Oct 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 880
Prediction of Critical Temperature of Superconductors using Tree
Based Methods with K-Fold Cross Validation
Peeyush Kumar Singh1, Pratham Kumar2
1Student, Department of Computer Science and Engineering, HMR Institute of Technology and Management, Delhi,
India
2Student, Department of Information Technology, College of Engineering Roorkee, Uttarakhand, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract – Superconductors are materials that show the
phenomenon of superconductivity which is a state of matter
that conducts current with zero resistance. Hence, an electric
current can exist indefinitely in such a material. Critical
temperature is that temperature below which they show
superconductivity (their resistance drops to zero). These
materials have significant practical applications but it is very
difficult to explain the critical temperature. Forthis, empirical
models are used by researchers in synthesizingsuch materials.
In this paper, various tree-based methods namely Random
Forest, CatBoost, LightGBMandXGBoostareemployed withK-
fold cross validation to achieve a prediction of critical
temperature as close as possible to the truevalue. Thefindings
demonstrate the effectiveness of these models based on root-
mean-squared-error. RandomForest, CatBoost, LightGBM and
XGBoost achieved 9.05 K, 8.95 K, 8.86 K and 8.85 K of root-
mean-squared error which suggests that they can be used to
predict the critical temperature by greatly reducingtherange
of temperatures in which it may lie. It is noted that the model
is only valid for giving predictions for superconductors.
Key Words: Superconductors, Critical Temperature,
Random Forest, CatBoost, LightGBM, XGBoost, K-fold
Cross-Validation, Machine Learning
1.INTRODUCTION
First discovered by Dutch physicistHeikeKamerlinghOnnes
in 1911, the phenomenon of superconductivity that is the
existence of materials that conduct current with zero
resistance when they become colder than their critical
temperature, has found many practical applications in the
modern world. They are widely usedinparticleaccelerators,
electric motors and generators, Maglev trains, Magnetic
Resonance Imaging (MRI), RF and Microwave filters, etc.
Thus, such materials are at the core of many modern-day
technologies and are of great importance.
The Critical temperature, below which superconductivity is
observed for a given superconductor is an important factor
in determining the practicality of a superconductor but it is
very hard to determine. Due to this, researchers employ
empirical modelstodeterminethecritical temperature. With
the advancement in Machine learning techniques,ithasnow
become possible to considerably narrow down the range of
temperatures among which critical temperature may lie.
Tree based architectures have emerged as a convincing
technique for this purpose as they can predict the Critical
temperature with an impressive root-mean-squared-error.
1.1 Random Forest
A Random Forest is, at its core, a supervised learning
technique that is an ensemble of Decision trees. It was
developed by Leo Breiman and Adele Cutler. It is a meta-
estimator that aggregates many Decision trees. Each tree
draws a random sample from original dataset when
generating a split and uses averaging to improve accuracy.
The trees run in parallel therefore, there is no interaction
among them. Each tree is different as not all features are
considered while making an individual tree. It is immune to
the curse of dimensionality. Its ease of use and flexibility has
seen it being adopted widely. It can handle both regression
and classification tasks. A regression technique that utilizes
Random Forest is available in Scikit-Learn library which is
used here.
1.2 CatBoost
CatBoost, developed by Yandex (2017) is an open-source
library for gradient boosting on decision trees. The name
comes from two words“Category”and“Boosting”.Theideaof
boosting is to sequentially combine many weak models and
thus through greedy search strategy, create a strong model.
CatBoost builds symmetric trees and supports all kinds of
features be it numerical, categorical or text. Its performance,
robustness and ease of use makes it a good choice for
regression and classification tasks although it is still used
relatively less than the well-known XGBoost method.
1.3 LightGBM
Light Gradient Boosting Machine, otherwise known as
LightGBM developed by Microsoft (2016) is an open-source
library forgradient boosting ondecisiontrees.Thedifference
between this and other boosting frameworks is that it grows
tree leaf-wise while other methods do it level-wise. It is
termed ‘Light’ due to the speed of its execution. It can handle
large size of data and takes much lower memory to run
compared to other methods. It uses two novel techniques
namely Gradient-based One Side Sampling (GOSS) and
Exclusive FeatureBundling(EFB)andfulfilsthelimitationsof
the histogram-based algorithms.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 10 | Oct 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 881
1.3 XGBoost
XGBoost is also an ensemble learning method which utilizes
decision trees and implements machine learning algorithms
under the Gradient boosting framework. It stands for
Extreme Gradient Boosting. It was developed by Chen and
Guestrin (2016). The trees are created in sequential form in
XGBoost. All the independent variables areassignedweights
and fed to a decision tree. The weight of variables wrongly
predicted are increased and fed to second decision tree. Due
to this, a strong and precise model is built. The xgboost
library offers both the classification and regression
techniques which is used here. It gives reasonable error of
8.853 K based on root-mean-squared-error.
2. LITERATURE REVIEW
[1] The paper discusses a XGBoostbasedmodeltopredictthe
critical temperatureof a superconductor.Thepaperpresents
a best performing model which has a cross validated root-
mean-squared-errorof9.5K.Theperformancemetricwas25-
foldcross validatedroot-mean-squared-error.Thepaperalso
covered feature importance and concluded that properties
such as thermal conductivity, valence, electron affinity and
atomic mass could be more important in predicting critical
temperature.
3. METHODOLOGY
The proposed approach consists of following stages: Data
collection and preprocessing, Model creation & Randomized
Search for hyperparameters, cross validation and score
tabulation.
Fig- 1: Workflow Diagram
(I) Data Collection and Preprocessing
To conduct this research, a dataset comprising of the
superconductors and their relevant features was obtained
from the UCI Machine Learning Repository. The dataset
consists of 21263 instances of superconductors and 82
features with 82nd feature being the critical temperature. A
correlation map was built as shown in the figure below. The
dataset was then split into X set containing all the features
and Y set containing the critical temperature. The feature set
X was then scaled using standard scaler of the Scikit-Learn
library.
Fig- 2: Correlation Map
(II) Model creation & Randomizedsearchforhyperparameters
Each model along with its grid of hyperparameters wasbuilt.
Experimentation with various such grids was done before
choosing the final grid. ARandomized Search wasperformed
on the final grid to get the values of hyperparameters. In
Randomized search, not all parameter values are tried out.
Only a fixed number of settings is sampled from the
distribution. These hyperparameters are then used to build
the final model.
(III) K-Fold cross validation and result tabulation
Cross validation isatechniquetoestimatetheperformanceof
the model on unseen data. The dataset is split into K folds. In
each iteration, data from K-1 folds is used to estimate the
model and evaluated on the remaining fold. This is repeated
K times so that each fold is used once for validation and an
average evaluation metric is computed.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 10 | Oct 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 882
The final models are cross validated using 3-Fold, 5-Foldand
10-Fold cross validation using the KFold and cross_val_score
methods of Scikit-Learn library. The results are then
tabulated. In the evaluation of the models, the metric used is
RMSE (root-mean-squared error) which is defined as:
Fig- 3: RMSE Formula
4. EVALUATION & RESULTS
(a) First, a Random Forest Model was created using the
Random Forest Regressor using the Scikit-Learn library. A
randomized search was performed on its hyperparameters
and thus the model was built using following: n-
estimators=100, max_depth=50andmax_features=0.3. After
this, 3-fold, 5-fold and 10-fold cross validation was done and
the results are tabulated below. These scores are impressive
and already outperforms the score mentioned in [1].
CV RMSE
3-fold 9.484991 K
5-fold 9.210530 K
10-fold 9.050967 K
Table- 1: RMSE for Random Forest
This result was taken as a benchmark for our boosting
algorithms.
(b) A CatBoost model was then created using the CatBoost
Regressor. Performing the randomized search on its
hyperparameters yielded the following: iterations=2000,
depth=10, l2_leaf_reg=1andlastly,learning_rate=0.05.These
parameters were then used to perform 3-fold, 5-fold and 10-
fold cross validation. The results are as follows:
CV RMSE
3-fold 9.369437 K
5-fold 9.103698 K
10-fold 8.959809 K
Table- 2: RMSE for CatBoost
(c) Afterwards, a LightGBM model was created using the
LightGBM Regressor. Randomized search on its
hyperparametersgave the following: n_estimators=750,
num_leaves=100, min_split_gain=0.01, learning_rate=0.05,
colsample_bytree=0.5. These parameters were then used to
perform 3-fold, 5-fold and 10-fold cross validation. The
results are as follows:
CV RMSE
3-fold 9.342223 K
5-fold 9.051495 K
10-fold 8.864332 K
Table- 3: RMSE for LightGBM
(d) Lastly, XGBoost model was created using the XGBoost
Regressor. Randomized search on its hyperparameters
yielded the following: n_estimators=750, max_depth=20,
learning_rate=0.01,colsample_bytree=0.3,alpha=2,lambda=0,
gamma=2and min_child_weight=10.Theseparameterswere
then used to perform 3-fold, 5-fold and 10-fold cross
validation. The results are as follows:
CV RMSE
3-fold 9.294267 K
5-fold 9.020392 K
10-fold 8.853131 K
Table- 4: RMSE for XGBoost
Finally, taking the best scoreofallmodelswhichisat10-Fold,
we get the following result:
Model RMSE (10-Fold)
Random Forest 9.050967 K
CatBoost 8.959809 K
LightGBM 8.864332 K
XGBoost 8.853131 K
Table- 5: RMSE (10-Fold) for Various Tree-based
models
This shows that all four models outperform the one
mentioned in [1]. Furthermore, among all these XGBoost
performs best although it is closely followed by LightGBM
and CatBoost. It is to be noted that the LightGBM model is
among the fastest gradient boosting methods and its result
being on par with the XGBoost model (within very small
margin of error) makes it a favorable model to consider for
real world usage. It is evident that all of these models
perform well for predicting the critical temperature of the
superconductors.
5. CONCLUSION
It is shown that the proposed models can predict the critical
temperaturesofsuperconductorsreasonablywell.These can
greatly reduce the range of temperature withinwhichitmay
lie. Future studiesmayconcentrateondataset expansion and
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 10 | Oct 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 883
rigorous feature engineering with extensive searchformore
optimal hyperparameters. The models can be easilyused for
research purposes.
REFERENCES
[1] Hamidieh, K. (2018). A data-driven statistical model
for predicting the critical temperature of a
superconductor. Computational Materials Science, 154,
346-354.
[2] Hamidieh,Kam. (2018). Superconductivty Data. UCI
Machine Learning Repository.
https://doi.org/10.24432/C53P47.
[3] https://xgboost.readthedocs.io/en/stable/
[4] https://catboost.ai/
[5] https://lightgbm.readthedocs.io/en/latest/index.html

More Related Content

Similar to Prediction of Critical Temperature of Superconductors using Tree Based Methods with K-Fold Cross Validation

IRJET- Enhanced Density Based Method for Clustering Data Stream
IRJET-  	  Enhanced Density Based Method for Clustering Data StreamIRJET-  	  Enhanced Density Based Method for Clustering Data Stream
IRJET- Enhanced Density Based Method for Clustering Data Stream
IRJET Journal
 
IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...
IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...
IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...
IRJET Journal
 
A02610104
A02610104A02610104
A02610104
theijes
 
Energy Efficient Technologies for Virtualized Cloud Data Center: A Systematic...
Energy Efficient Technologies for Virtualized Cloud Data Center: A Systematic...Energy Efficient Technologies for Virtualized Cloud Data Center: A Systematic...
Energy Efficient Technologies for Virtualized Cloud Data Center: A Systematic...
IRJET Journal
 
Medical Herb Identification and It’s Benefits
Medical Herb Identification and It’s BenefitsMedical Herb Identification and It’s Benefits
Medical Herb Identification and It’s Benefits
IRJET Journal
 
IRJET- An Efficient Dynamic Deputy Cluster Head Selection Method for Wireless...
IRJET- An Efficient Dynamic Deputy Cluster Head Selection Method for Wireless...IRJET- An Efficient Dynamic Deputy Cluster Head Selection Method for Wireless...
IRJET- An Efficient Dynamic Deputy Cluster Head Selection Method for Wireless...
IRJET Journal
 
IRJET- An Efficient Energy Consumption Minimizing Based on Genetic and Power ...
IRJET- An Efficient Energy Consumption Minimizing Based on Genetic and Power ...IRJET- An Efficient Energy Consumption Minimizing Based on Genetic and Power ...
IRJET- An Efficient Energy Consumption Minimizing Based on Genetic and Power ...
IRJET Journal
 
Renewable Energy Driven Optimized Microgrid System: A Case Study with Hybrid ...
Renewable Energy Driven Optimized Microgrid System: A Case Study with Hybrid ...Renewable Energy Driven Optimized Microgrid System: A Case Study with Hybrid ...
Renewable Energy Driven Optimized Microgrid System: A Case Study with Hybrid ...
IRJET Journal
 
IRJET - Demand Response for Energy Management using Machine Learning and LSTM...
IRJET - Demand Response for Energy Management using Machine Learning and LSTM...IRJET - Demand Response for Energy Management using Machine Learning and LSTM...
IRJET - Demand Response for Energy Management using Machine Learning and LSTM...
IRJET Journal
 
AUTOMATED WASTE MANAGEMENT SYSTEM
AUTOMATED WASTE MANAGEMENT SYSTEMAUTOMATED WASTE MANAGEMENT SYSTEM
AUTOMATED WASTE MANAGEMENT SYSTEM
IRJET Journal
 
A Review on Prediction of Compressive Strength and Slump by Using Different M...
A Review on Prediction of Compressive Strength and Slump by Using Different M...A Review on Prediction of Compressive Strength and Slump by Using Different M...
A Review on Prediction of Compressive Strength and Slump by Using Different M...
IRJET Journal
 
Af4201214217
Af4201214217Af4201214217
Af4201214217
IJERA Editor
 
A046010107
A046010107A046010107
A046010107
IJERA Editor
 
A Comparative Analysis of Vedic multiplier with Array and Wallace Tree multip...
A Comparative Analysis of Vedic multiplier with Array and Wallace Tree multip...A Comparative Analysis of Vedic multiplier with Array and Wallace Tree multip...
A Comparative Analysis of Vedic multiplier with Array and Wallace Tree multip...
IRJET Journal
 
Software tools, crystal descriptors, and machine learning applied to material...
Software tools, crystal descriptors, and machine learning applied to material...Software tools, crystal descriptors, and machine learning applied to material...
Software tools, crystal descriptors, and machine learning applied to material...
Anubhav Jain
 
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
IJERD Editor
 
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
IJERD Editor
 
HSO: A Hybrid Swarm Optimization Algorithm for Reducing Energy Consumption in...
HSO: A Hybrid Swarm Optimization Algorithm for Reducing Energy Consumption in...HSO: A Hybrid Swarm Optimization Algorithm for Reducing Energy Consumption in...
HSO: A Hybrid Swarm Optimization Algorithm for Reducing Energy Consumption in...
TELKOMNIKA JOURNAL
 
Sustainable Development using Green Programming
Sustainable Development using Green ProgrammingSustainable Development using Green Programming
Sustainable Development using Green Programming
IRJET Journal
 
IRJET - Object Identification in Steel Container through Thermal Image Pi...
IRJET -  	  Object Identification in Steel Container through Thermal Image Pi...IRJET -  	  Object Identification in Steel Container through Thermal Image Pi...
IRJET - Object Identification in Steel Container through Thermal Image Pi...
IRJET Journal
 

Similar to Prediction of Critical Temperature of Superconductors using Tree Based Methods with K-Fold Cross Validation (20)

IRJET- Enhanced Density Based Method for Clustering Data Stream
IRJET-  	  Enhanced Density Based Method for Clustering Data StreamIRJET-  	  Enhanced Density Based Method for Clustering Data Stream
IRJET- Enhanced Density Based Method for Clustering Data Stream
 
IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...
IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...
IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...
 
A02610104
A02610104A02610104
A02610104
 
Energy Efficient Technologies for Virtualized Cloud Data Center: A Systematic...
Energy Efficient Technologies for Virtualized Cloud Data Center: A Systematic...Energy Efficient Technologies for Virtualized Cloud Data Center: A Systematic...
Energy Efficient Technologies for Virtualized Cloud Data Center: A Systematic...
 
Medical Herb Identification and It’s Benefits
Medical Herb Identification and It’s BenefitsMedical Herb Identification and It’s Benefits
Medical Herb Identification and It’s Benefits
 
IRJET- An Efficient Dynamic Deputy Cluster Head Selection Method for Wireless...
IRJET- An Efficient Dynamic Deputy Cluster Head Selection Method for Wireless...IRJET- An Efficient Dynamic Deputy Cluster Head Selection Method for Wireless...
IRJET- An Efficient Dynamic Deputy Cluster Head Selection Method for Wireless...
 
IRJET- An Efficient Energy Consumption Minimizing Based on Genetic and Power ...
IRJET- An Efficient Energy Consumption Minimizing Based on Genetic and Power ...IRJET- An Efficient Energy Consumption Minimizing Based on Genetic and Power ...
IRJET- An Efficient Energy Consumption Minimizing Based on Genetic and Power ...
 
Renewable Energy Driven Optimized Microgrid System: A Case Study with Hybrid ...
Renewable Energy Driven Optimized Microgrid System: A Case Study with Hybrid ...Renewable Energy Driven Optimized Microgrid System: A Case Study with Hybrid ...
Renewable Energy Driven Optimized Microgrid System: A Case Study with Hybrid ...
 
IRJET - Demand Response for Energy Management using Machine Learning and LSTM...
IRJET - Demand Response for Energy Management using Machine Learning and LSTM...IRJET - Demand Response for Energy Management using Machine Learning and LSTM...
IRJET - Demand Response for Energy Management using Machine Learning and LSTM...
 
AUTOMATED WASTE MANAGEMENT SYSTEM
AUTOMATED WASTE MANAGEMENT SYSTEMAUTOMATED WASTE MANAGEMENT SYSTEM
AUTOMATED WASTE MANAGEMENT SYSTEM
 
A Review on Prediction of Compressive Strength and Slump by Using Different M...
A Review on Prediction of Compressive Strength and Slump by Using Different M...A Review on Prediction of Compressive Strength and Slump by Using Different M...
A Review on Prediction of Compressive Strength and Slump by Using Different M...
 
Af4201214217
Af4201214217Af4201214217
Af4201214217
 
A046010107
A046010107A046010107
A046010107
 
A Comparative Analysis of Vedic multiplier with Array and Wallace Tree multip...
A Comparative Analysis of Vedic multiplier with Array and Wallace Tree multip...A Comparative Analysis of Vedic multiplier with Array and Wallace Tree multip...
A Comparative Analysis of Vedic multiplier with Array and Wallace Tree multip...
 
Software tools, crystal descriptors, and machine learning applied to material...
Software tools, crystal descriptors, and machine learning applied to material...Software tools, crystal descriptors, and machine learning applied to material...
Software tools, crystal descriptors, and machine learning applied to material...
 
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
 
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
 
HSO: A Hybrid Swarm Optimization Algorithm for Reducing Energy Consumption in...
HSO: A Hybrid Swarm Optimization Algorithm for Reducing Energy Consumption in...HSO: A Hybrid Swarm Optimization Algorithm for Reducing Energy Consumption in...
HSO: A Hybrid Swarm Optimization Algorithm for Reducing Energy Consumption in...
 
Sustainable Development using Green Programming
Sustainable Development using Green ProgrammingSustainable Development using Green Programming
Sustainable Development using Green Programming
 
IRJET - Object Identification in Steel Container through Thermal Image Pi...
IRJET -  	  Object Identification in Steel Container through Thermal Image Pi...IRJET -  	  Object Identification in Steel Container through Thermal Image Pi...
IRJET - Object Identification in Steel Container through Thermal Image Pi...
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
IRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
IRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
IRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
IRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
IRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
IRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
Las Vegas Warehouse
 
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
IJECEIAES
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
mamamaam477
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
Victor Morales
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
Curve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods RegressionCurve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods Regression
Nada Hikmah
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
gerogepatton
 
Certificates - Mahmoud Mohamed Moursi Ahmed
Certificates - Mahmoud Mohamed Moursi AhmedCertificates - Mahmoud Mohamed Moursi Ahmed
Certificates - Mahmoud Mohamed Moursi Ahmed
Mahmoud Morsy
 
Introduction to AI Safety (public presentation).pptx
Introduction to AI Safety (public presentation).pptxIntroduction to AI Safety (public presentation).pptx
Introduction to AI Safety (public presentation).pptx
MiscAnnoy1
 
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by AnantLLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
Anant Corporation
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
Hitesh Mohapatra
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
jpsjournal1
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
bijceesjournal
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.pptUnit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
KrishnaveniKrishnara1
 
Engineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdfEngineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdf
abbyasa1014
 
Textile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdfTextile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdf
NazakatAliKhoso2
 
ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024
Rahul
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
MDSABBIROJJAMANPAYEL
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
shadow0702a
 

Recently uploaded (20)

ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
 
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
Curve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods RegressionCurve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods Regression
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
 
Certificates - Mahmoud Mohamed Moursi Ahmed
Certificates - Mahmoud Mohamed Moursi AhmedCertificates - Mahmoud Mohamed Moursi Ahmed
Certificates - Mahmoud Mohamed Moursi Ahmed
 
Introduction to AI Safety (public presentation).pptx
Introduction to AI Safety (public presentation).pptxIntroduction to AI Safety (public presentation).pptx
Introduction to AI Safety (public presentation).pptx
 
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by AnantLLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.pptUnit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
 
Engineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdfEngineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdf
 
Textile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdfTextile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdf
 
ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
 

Prediction of Critical Temperature of Superconductors using Tree Based Methods with K-Fold Cross Validation

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 10 | Oct 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 880 Prediction of Critical Temperature of Superconductors using Tree Based Methods with K-Fold Cross Validation Peeyush Kumar Singh1, Pratham Kumar2 1Student, Department of Computer Science and Engineering, HMR Institute of Technology and Management, Delhi, India 2Student, Department of Information Technology, College of Engineering Roorkee, Uttarakhand, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract – Superconductors are materials that show the phenomenon of superconductivity which is a state of matter that conducts current with zero resistance. Hence, an electric current can exist indefinitely in such a material. Critical temperature is that temperature below which they show superconductivity (their resistance drops to zero). These materials have significant practical applications but it is very difficult to explain the critical temperature. Forthis, empirical models are used by researchers in synthesizingsuch materials. In this paper, various tree-based methods namely Random Forest, CatBoost, LightGBMandXGBoostareemployed withK- fold cross validation to achieve a prediction of critical temperature as close as possible to the truevalue. Thefindings demonstrate the effectiveness of these models based on root- mean-squared-error. RandomForest, CatBoost, LightGBM and XGBoost achieved 9.05 K, 8.95 K, 8.86 K and 8.85 K of root- mean-squared error which suggests that they can be used to predict the critical temperature by greatly reducingtherange of temperatures in which it may lie. It is noted that the model is only valid for giving predictions for superconductors. Key Words: Superconductors, Critical Temperature, Random Forest, CatBoost, LightGBM, XGBoost, K-fold Cross-Validation, Machine Learning 1.INTRODUCTION First discovered by Dutch physicistHeikeKamerlinghOnnes in 1911, the phenomenon of superconductivity that is the existence of materials that conduct current with zero resistance when they become colder than their critical temperature, has found many practical applications in the modern world. They are widely usedinparticleaccelerators, electric motors and generators, Maglev trains, Magnetic Resonance Imaging (MRI), RF and Microwave filters, etc. Thus, such materials are at the core of many modern-day technologies and are of great importance. The Critical temperature, below which superconductivity is observed for a given superconductor is an important factor in determining the practicality of a superconductor but it is very hard to determine. Due to this, researchers employ empirical modelstodeterminethecritical temperature. With the advancement in Machine learning techniques,ithasnow become possible to considerably narrow down the range of temperatures among which critical temperature may lie. Tree based architectures have emerged as a convincing technique for this purpose as they can predict the Critical temperature with an impressive root-mean-squared-error. 1.1 Random Forest A Random Forest is, at its core, a supervised learning technique that is an ensemble of Decision trees. It was developed by Leo Breiman and Adele Cutler. It is a meta- estimator that aggregates many Decision trees. Each tree draws a random sample from original dataset when generating a split and uses averaging to improve accuracy. The trees run in parallel therefore, there is no interaction among them. Each tree is different as not all features are considered while making an individual tree. It is immune to the curse of dimensionality. Its ease of use and flexibility has seen it being adopted widely. It can handle both regression and classification tasks. A regression technique that utilizes Random Forest is available in Scikit-Learn library which is used here. 1.2 CatBoost CatBoost, developed by Yandex (2017) is an open-source library for gradient boosting on decision trees. The name comes from two words“Category”and“Boosting”.Theideaof boosting is to sequentially combine many weak models and thus through greedy search strategy, create a strong model. CatBoost builds symmetric trees and supports all kinds of features be it numerical, categorical or text. Its performance, robustness and ease of use makes it a good choice for regression and classification tasks although it is still used relatively less than the well-known XGBoost method. 1.3 LightGBM Light Gradient Boosting Machine, otherwise known as LightGBM developed by Microsoft (2016) is an open-source library forgradient boosting ondecisiontrees.Thedifference between this and other boosting frameworks is that it grows tree leaf-wise while other methods do it level-wise. It is termed ‘Light’ due to the speed of its execution. It can handle large size of data and takes much lower memory to run compared to other methods. It uses two novel techniques namely Gradient-based One Side Sampling (GOSS) and Exclusive FeatureBundling(EFB)andfulfilsthelimitationsof the histogram-based algorithms.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 10 | Oct 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 881 1.3 XGBoost XGBoost is also an ensemble learning method which utilizes decision trees and implements machine learning algorithms under the Gradient boosting framework. It stands for Extreme Gradient Boosting. It was developed by Chen and Guestrin (2016). The trees are created in sequential form in XGBoost. All the independent variables areassignedweights and fed to a decision tree. The weight of variables wrongly predicted are increased and fed to second decision tree. Due to this, a strong and precise model is built. The xgboost library offers both the classification and regression techniques which is used here. It gives reasonable error of 8.853 K based on root-mean-squared-error. 2. LITERATURE REVIEW [1] The paper discusses a XGBoostbasedmodeltopredictthe critical temperatureof a superconductor.Thepaperpresents a best performing model which has a cross validated root- mean-squared-errorof9.5K.Theperformancemetricwas25- foldcross validatedroot-mean-squared-error.Thepaperalso covered feature importance and concluded that properties such as thermal conductivity, valence, electron affinity and atomic mass could be more important in predicting critical temperature. 3. METHODOLOGY The proposed approach consists of following stages: Data collection and preprocessing, Model creation & Randomized Search for hyperparameters, cross validation and score tabulation. Fig- 1: Workflow Diagram (I) Data Collection and Preprocessing To conduct this research, a dataset comprising of the superconductors and their relevant features was obtained from the UCI Machine Learning Repository. The dataset consists of 21263 instances of superconductors and 82 features with 82nd feature being the critical temperature. A correlation map was built as shown in the figure below. The dataset was then split into X set containing all the features and Y set containing the critical temperature. The feature set X was then scaled using standard scaler of the Scikit-Learn library. Fig- 2: Correlation Map (II) Model creation & Randomizedsearchforhyperparameters Each model along with its grid of hyperparameters wasbuilt. Experimentation with various such grids was done before choosing the final grid. ARandomized Search wasperformed on the final grid to get the values of hyperparameters. In Randomized search, not all parameter values are tried out. Only a fixed number of settings is sampled from the distribution. These hyperparameters are then used to build the final model. (III) K-Fold cross validation and result tabulation Cross validation isatechniquetoestimatetheperformanceof the model on unseen data. The dataset is split into K folds. In each iteration, data from K-1 folds is used to estimate the model and evaluated on the remaining fold. This is repeated K times so that each fold is used once for validation and an average evaluation metric is computed.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 10 | Oct 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 882 The final models are cross validated using 3-Fold, 5-Foldand 10-Fold cross validation using the KFold and cross_val_score methods of Scikit-Learn library. The results are then tabulated. In the evaluation of the models, the metric used is RMSE (root-mean-squared error) which is defined as: Fig- 3: RMSE Formula 4. EVALUATION & RESULTS (a) First, a Random Forest Model was created using the Random Forest Regressor using the Scikit-Learn library. A randomized search was performed on its hyperparameters and thus the model was built using following: n- estimators=100, max_depth=50andmax_features=0.3. After this, 3-fold, 5-fold and 10-fold cross validation was done and the results are tabulated below. These scores are impressive and already outperforms the score mentioned in [1]. CV RMSE 3-fold 9.484991 K 5-fold 9.210530 K 10-fold 9.050967 K Table- 1: RMSE for Random Forest This result was taken as a benchmark for our boosting algorithms. (b) A CatBoost model was then created using the CatBoost Regressor. Performing the randomized search on its hyperparameters yielded the following: iterations=2000, depth=10, l2_leaf_reg=1andlastly,learning_rate=0.05.These parameters were then used to perform 3-fold, 5-fold and 10- fold cross validation. The results are as follows: CV RMSE 3-fold 9.369437 K 5-fold 9.103698 K 10-fold 8.959809 K Table- 2: RMSE for CatBoost (c) Afterwards, a LightGBM model was created using the LightGBM Regressor. Randomized search on its hyperparametersgave the following: n_estimators=750, num_leaves=100, min_split_gain=0.01, learning_rate=0.05, colsample_bytree=0.5. These parameters were then used to perform 3-fold, 5-fold and 10-fold cross validation. The results are as follows: CV RMSE 3-fold 9.342223 K 5-fold 9.051495 K 10-fold 8.864332 K Table- 3: RMSE for LightGBM (d) Lastly, XGBoost model was created using the XGBoost Regressor. Randomized search on its hyperparameters yielded the following: n_estimators=750, max_depth=20, learning_rate=0.01,colsample_bytree=0.3,alpha=2,lambda=0, gamma=2and min_child_weight=10.Theseparameterswere then used to perform 3-fold, 5-fold and 10-fold cross validation. The results are as follows: CV RMSE 3-fold 9.294267 K 5-fold 9.020392 K 10-fold 8.853131 K Table- 4: RMSE for XGBoost Finally, taking the best scoreofallmodelswhichisat10-Fold, we get the following result: Model RMSE (10-Fold) Random Forest 9.050967 K CatBoost 8.959809 K LightGBM 8.864332 K XGBoost 8.853131 K Table- 5: RMSE (10-Fold) for Various Tree-based models This shows that all four models outperform the one mentioned in [1]. Furthermore, among all these XGBoost performs best although it is closely followed by LightGBM and CatBoost. It is to be noted that the LightGBM model is among the fastest gradient boosting methods and its result being on par with the XGBoost model (within very small margin of error) makes it a favorable model to consider for real world usage. It is evident that all of these models perform well for predicting the critical temperature of the superconductors. 5. CONCLUSION It is shown that the proposed models can predict the critical temperaturesofsuperconductorsreasonablywell.These can greatly reduce the range of temperature withinwhichitmay lie. Future studiesmayconcentrateondataset expansion and
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 10 | Oct 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 883 rigorous feature engineering with extensive searchformore optimal hyperparameters. The models can be easilyused for research purposes. REFERENCES [1] Hamidieh, K. (2018). A data-driven statistical model for predicting the critical temperature of a superconductor. Computational Materials Science, 154, 346-354. [2] Hamidieh,Kam. (2018). Superconductivty Data. UCI Machine Learning Repository. https://doi.org/10.24432/C53P47. [3] https://xgboost.readthedocs.io/en/stable/ [4] https://catboost.ai/ [5] https://lightgbm.readthedocs.io/en/latest/index.html