Disease Prediction Using Machine Learning
Use Machine Learning and Deep Learning models to classify 42 diseases !
@kaggle.kaushil268_disease_prediction_using_machine_learning
Use Machine Learning and Deep Learning models to classify 42 diseases !
@kaggle.kaushil268_disease_prediction_using_machine_learning
CREATE TABLE testing (
"itching" BIGINT,
"skin_rash" BIGINT,
"nodal_skin_eruptions" BIGINT,
"continuous_sneezing" BIGINT,
"shivering" BIGINT,
"chills" BIGINT,
"joint_pain" BIGINT,
"stomach_pain" BIGINT,
"acidity" BIGINT,
"ulcers_on_tongue" BIGINT,
"muscle_wasting" BIGINT,
"vomiting" BIGINT,
"burning_micturition" BIGINT,
"spotting_urination" BIGINT,
"fatigue" BIGINT,
"weight_gain" BIGINT,
"anxiety" BIGINT,
"cold_hands_and_feets" BIGINT,
"mood_swings" BIGINT,
"weight_loss" BIGINT,
"restlessness" BIGINT,
"lethargy" BIGINT,
"patches_in_throat" BIGINT,
"irregular_sugar_level" BIGINT,
"cough" BIGINT,
"high_fever" BIGINT,
"sunken_eyes" BIGINT,
"breathlessness" BIGINT,
"sweating" BIGINT,
"dehydration" BIGINT,
"indigestion" BIGINT,
"headache" BIGINT,
"yellowish_skin" BIGINT,
"dark_urine" BIGINT,
"nausea" BIGINT,
"loss_of_appetite" BIGINT,
"pain_behind_the_eyes" BIGINT,
"back_pain" BIGINT,
"constipation" BIGINT,
"abdominal_pain" BIGINT,
"diarrhoea" BIGINT,
"mild_fever" BIGINT,
"yellow_urine" BIGINT,
"yellowing_of_eyes" BIGINT,
"acute_liver_failure" BIGINT,
"fluid_overload" BIGINT,
"swelling_of_stomach" BIGINT,
"swelled_lymph_nodes" BIGINT,
"malaise" BIGINT,
"blurred_and_distorted_vision" BIGINT,
"phlegm" BIGINT,
"throat_irritation" BIGINT,
"redness_of_eyes" BIGINT,
"sinus_pressure" BIGINT,
"runny_nose" BIGINT,
"congestion" BIGINT,
"chest_pain" BIGINT,
"weakness_in_limbs" BIGINT,
"fast_heart_rate" BIGINT,
"pain_during_bowel_movements" BIGINT,
"pain_in_anal_region" BIGINT,
"bloody_stool" BIGINT,
"irritation_in_anus" BIGINT,
"neck_pain" BIGINT,
"dizziness" BIGINT,
"cramps" BIGINT,
"bruising" BIGINT,
"obesity" BIGINT,
"swollen_legs" BIGINT,
"swollen_blood_vessels" BIGINT,
"puffy_face_and_eyes" BIGINT,
"enlarged_thyroid" BIGINT,
"brittle_nails" BIGINT,
"swollen_extremeties" BIGINT,
"excessive_hunger" BIGINT,
"extra_marital_contacts" BIGINT,
"drying_and_tingling_lips" BIGINT,
"slurred_speech" BIGINT,
"knee_pain" BIGINT,
"hip_joint_pain" BIGINT,
"muscle_weakness" BIGINT,
"stiff_neck" BIGINT,
"swelling_joints" BIGINT,
"movement_stiffness" BIGINT,
"spinning_movements" BIGINT,
"loss_of_balance" BIGINT,
"unsteadiness" BIGINT,
"weakness_of_one_body_side" BIGINT,
"loss_of_smell" BIGINT,
"bladder_discomfort" BIGINT,
"foul_smell_of_urine" BIGINT,
"continuous_feel_of_urine" BIGINT,
"passage_of_gases" BIGINT,
"internal_itching" BIGINT,
"toxic_look_typhos" BIGINT,
"depression" BIGINT,
"irritability" BIGINT,
"muscle_pain" BIGINT,
"altered_sensorium" BIGINT,
"red_spots_over_body" BIGINT
);
CREATE TABLE training (
"itching" BIGINT,
"skin_rash" BIGINT,
"nodal_skin_eruptions" BIGINT,
"continuous_sneezing" BIGINT,
"shivering" BIGINT,
"chills" BIGINT,
"joint_pain" BIGINT,
"stomach_pain" BIGINT,
"acidity" BIGINT,
"ulcers_on_tongue" BIGINT,
"muscle_wasting" BIGINT,
"vomiting" BIGINT,
"burning_micturition" BIGINT,
"spotting_urination" BIGINT,
"fatigue" BIGINT,
"weight_gain" BIGINT,
"anxiety" BIGINT,
"cold_hands_and_feets" BIGINT,
"mood_swings" BIGINT,
"weight_loss" BIGINT,
"restlessness" BIGINT,
"lethargy" BIGINT,
"patches_in_throat" BIGINT,
"irregular_sugar_level" BIGINT,
"cough" BIGINT,
"high_fever" BIGINT,
"sunken_eyes" BIGINT,
"breathlessness" BIGINT,
"sweating" BIGINT,
"dehydration" BIGINT,
"indigestion" BIGINT,
"headache" BIGINT,
"yellowish_skin" BIGINT,
"dark_urine" BIGINT,
"nausea" BIGINT,
"loss_of_appetite" BIGINT,
"pain_behind_the_eyes" BIGINT,
"back_pain" BIGINT,
"constipation" BIGINT,
"abdominal_pain" BIGINT,
"diarrhoea" BIGINT,
"mild_fever" BIGINT,
"yellow_urine" BIGINT,
"yellowing_of_eyes" BIGINT,
"acute_liver_failure" BIGINT,
"fluid_overload" BIGINT,
"swelling_of_stomach" BIGINT,
"swelled_lymph_nodes" BIGINT,
"malaise" BIGINT,
"blurred_and_distorted_vision" BIGINT,
"phlegm" BIGINT,
"throat_irritation" BIGINT,
"redness_of_eyes" BIGINT,
"sinus_pressure" BIGINT,
"runny_nose" BIGINT,
"congestion" BIGINT,
"chest_pain" BIGINT,
"weakness_in_limbs" BIGINT,
"fast_heart_rate" BIGINT,
"pain_during_bowel_movements" BIGINT,
"pain_in_anal_region" BIGINT,
"bloody_stool" BIGINT,
"irritation_in_anus" BIGINT,
"neck_pain" BIGINT,
"dizziness" BIGINT,
"cramps" BIGINT,
"bruising" BIGINT,
"obesity" BIGINT,
"swollen_legs" BIGINT,
"swollen_blood_vessels" BIGINT,
"puffy_face_and_eyes" BIGINT,
"enlarged_thyroid" BIGINT,
"brittle_nails" BIGINT,
"swollen_extremeties" BIGINT,
"excessive_hunger" BIGINT,
"extra_marital_contacts" BIGINT,
"drying_and_tingling_lips" BIGINT,
"slurred_speech" BIGINT,
"knee_pain" BIGINT,
"hip_joint_pain" BIGINT,
"muscle_weakness" BIGINT,
"stiff_neck" BIGINT,
"swelling_joints" BIGINT,
"movement_stiffness" BIGINT,
"spinning_movements" BIGINT,
"loss_of_balance" BIGINT,
"unsteadiness" BIGINT,
"weakness_of_one_body_side" BIGINT,
"loss_of_smell" BIGINT,
"bladder_discomfort" BIGINT,
"foul_smell_of_urine" BIGINT,
"continuous_feel_of_urine" BIGINT,
"passage_of_gases" BIGINT,
"internal_itching" BIGINT,
"toxic_look_typhos" BIGINT,
"depression" BIGINT,
"irritability" BIGINT,
"muscle_pain" BIGINT,
"altered_sensorium" BIGINT,
"red_spots_over_body" BIGINT
);
Anyone who has the link will be able to view this.