Star Type Classification / NASA
For Type Prediction & Classification
@kaggle.brsdincer_star_type_classification
For Type Prediction & Classification
@kaggle.brsdincer_star_type_classification
For comparing all models of ML
It can be used for prediction
Temperature -- K
L -- L/Lo
R -- R/Ro
AM -- Mv
Color -- General Color of Spectrum
Spectral_Class -- O,B,A,F,G,K,M / SMASS - https://en.wikipedia.org/wiki/Asteroid_spectral_types
Type -- Red Dwarf, Brown Dwarf, White Dwarf, Main Sequence , Super Giants, Hyper Giants
TARGET:
Type
from 0 to 5
MATH:
Lo = 3.828 x 10^26 Watts
(Avg Luminosity of Sun)
Ro = 6.9551 x 10^8 m
(Avg Radius of Sun)
CREATE TABLE stars (
"temperature" BIGINT,
"l" DOUBLE,
"r" DOUBLE,
"a_m" DOUBLE,
"color" VARCHAR,
"spectral_class" VARCHAR,
"type" BIGINT
);Anyone who has the link will be able to view this.