2021.02.21(pm): Kaggle Loan data binary classification

I’m currently learning R programming, and I’m trying to classify Kaggle loan customers using R programming. The first analysis that can be done using raw data as it is is to estimate (predict, classify) 1 dependent variable with 3 categories using 10 input variables (independent variables, X). Here, the dependent variable (target variable, Y) is …

2021.01.16(pm): Prevention of Red Scale Formation during Hot Rolling of Steels

authors : Hikaru Okada, Tomoki Fukagawa, Haruhiko Ishihara, Atsuki Okamoto, Masatoshi Azuma, Yukio Matsuda link :  https://doi.org/10.2355/isijinternational.35.886 abstract : Red scale defects usually observed in high Si hot rolled strip were reproduced in a laboratory 3 stand tendem mill. The effects of hot rolling and descaling conditions on the strip surface color and scale structure were examined.Irrespective of Si content …

2021.01.16(pm): Mechanism of Red Scale Defect Formation in Si-added Hot-rolled Steel Sheets

authors : Tomoki Fukagawa, Hikaru Okada, Yasuhiro Maehara link : 10.2355/isijinternational.34.906 Abstract : The red scale, which is one of the major defects on hot-rolled Si added steel sheets, is reproduced experimentally. On the basis of detailed observation of the scale properties, we propose the mechanism of formation of the red scale. Imcomplete descaling of FeO prior …

2021.01.16(am): Kinetics of High Temperature Oxidation of High Carbon Steels in Multi-component Gases Approximating Industrial Steel Reheat Furnace Atmospheres

authors: H. T. Abuluwefa link: https://www.researchgate.net/publication/286600352_Kinetics_of_High_Temperature_Oxidation_of_High_Carbon_Steels_in_Multi-component_Gases_Approximating_Industrial_Steel_Reheat_Furnace_Atmospheres abstract:The isothermal oxidation behaviour of some carbon steels under various experimental conditions was investigated. The composition of oxidation atmosphere used in this work was chosen to approximate atmospheres found in industrial steel billet reheat furnaces. In order to study the effect of adding each gaseous component in these atmospheres experiments were …

2021.01.10(am): BNN(Bayesian Neural Network)

Machine learning blind spots In 2015, there was a controversy when Google AI recognized black people as gorillas. This shows the blind spot of AI. Humans can distinguish between chicken and poodle, but because the machine separates the image with an algorithm, the pictures below can be recognized as the same picture. Similar examples include …

2020.08.29(pm): Deep Learning with PYTORCH

I wrote this post with a tutorial on ending deep learning in 60 minutes via the link below.https://tutorials.pytorch.kr/beginner/deep_learning_60min_blitz.html What is PYTORCH? A Python-based scientific computation package targeted at two groups: When computing using GPU is required while replacing NumPy When you need a deep learning research platform that provides maximum flexibility and speed First, let’s …