Skip to main content

Genetic Variant Classifier : Random Forest Beats Deep Architecture (By a HUGE MARGIN)

Hello Readers!
Welcome to yet another value prediction work! Today, we will be looking at the in-demand dataset , namely Genetic Variant Classifications.




We will look at this dataset and go for it's primary objective, that is classification of  the two lab reports and determining whether they both conflict or not.

The Kernel you may want to look at for more information : Conflicting result classifications

As usual, we will be looking at the dataset with the aim of EDA, Feature Engineering and Predictions

Exploratory Data Analysis

One would like to see what are the Chromosomes vs Class distribution of this data. For that, you can simply use : 




As you can observe in the graph given below, the dataset happens to be heavily biased towards the non- conflicting genes and that too with the CHROM == 2 standing out as the clear bias winner.
Since the incidents where the genes are recorded to be conflicting, we can assume that our classifiers won't be doing much of a great job and we can assume that most of them would take CHROM 2 as their most important feature if we don't feature hash it into something of a lower dimension

Once that is clear, let's go on and check out our feature selections:








Feature Engineering

Applying Feature Hashing and Binary Classification on various classes.


Machine Learning Models

I will be skipping the pure modelling part here for that you guys can visit the kernel from the link above and will just share the interesting detail which I came across recently, namely Feature Importance. 

The feature importance of the Worst Performer (Logistic Classifier) can be shown as : 
From the graph above, we can easily understand that the most important features taken into consideration by our Logistic Regressor are Inversion, Microsatellite and LOW, while the chromosomes are given very little or no importance.
While the Feature importance of the Best Performance (Random Forest Classifier) can be show as : 
Here, we can see the emphasis on Chromosome types.

Deep Learning Model

I tried the following deep learning model for the same prediction (although it failed. Pretty badly)

and well, it came out with a performance of worse than the Decision Tree Classifier (discussed in Kernel itself)

Conclusion

By this, we can conclude that Random Forest Classifier is our best bet, and our deep learning model probably failed because of extensive binary and feature modelling and evident bias.

Comments

Total Pageviews

Popular posts from this blog

Kaggle Dataset Analysis : Is your Avocado organic or not?

Hey readers! Today, allow me to present you yet another dataset analysis of a rather gluttony topic, namely Avocado price analysis. This Data set  represents the historical data on avocado prices and sales volume in multiple US markets. Our prime objectives will be to visualize the dataset, pre-process it and ultimately test multiple sklearn classifiers to checkout which one gives us the best confidence and accuracy for our Avocado's Organic assurance! Note : I'd like to extend the kernel contribution to Shivam Negi . All this code belongs to him. Data Visualization This script must procure the following jointplot  While a similar joint plot can be drawn for conluding the linearly exponent relations between extra large bags and the small ones. Pre Processing The following script has been used for pre processing the input data. Model Definition and Comparisons We will be looking mostly at three different models, namely ra...

Data Science Tip : Why and how to Improve your training data.

Hi readers ,  There are heaps of good reasons why researchers are so focused on model designs, however it means that there are not very many assets accessible to control individuals who are centered around deploying machine learning underway. To address that, An ongoing talk at the gathering was on "the preposterous adequacy of preparing information", and I need to develop that a bit in this blog entry, clarifying why information is so imperative alongside some commonsense tips on enhancing it. As a feature of my investigation I work intimately with a great deal of researchers and item groups, and my faith in the intensity of information changes originates from the gigantic additions I've seen them accomplish when they focus on that side of their model building. The greatest boundary to utilizing deep learning in many applications is getting sufficiently high accuracy in reality, and enhancing the preparation set is the quickest route I've seen to accuracy upgr...

Tackling MNIST Dataset : Deep Convolutional Neural Network 99.571% accurate

Hey there! My dear readers.  Today this kernel review is going to be about the famous MNIST data-set, one of the most famous introductory datasets which we encounter along side Iris dataset and the titanic survival challenge data sets.  Since it is a competition kernel, I have decided not to make it public. (yet) Also,  if you want to try your hands at the challenge itself, then you can find the challenge page here :  Note: This kernel has been largely focused on network modelling rather than Exploratory Data Analysis because it's simple, classic stuff. Still, I will try my best to explain that stuff here. Exploratory Data Analysis First indication of a great dataset is the face that it gives all the mentioned labels equal rows in it and this one doesn't disappoint. This data set maintains a fair 4000+ entries per label which actually is a great statistic for a good dataset. And the next thing one needs to know is how...