Skip to main content

ADABOOST

AdaBoost This blog post will provide you with a comprehensive overview of Adaboost, exploring the theory behind this probabilistic algorithm and demonstrating its implementation using Python libraries. Dive in to uncover the advantages and disadvantages of neural network, as well as its real-world applications across various domains. With that, enjoy your journey in QDO! What is  Adaboost AdaBoost (Adaptive Boosting) is an ensemble learning technique that combines multiple weak classifiers (often decision trees) to create a strong classifier. It works by training the weak classifiers sequentially, giving more weight to misclassified instances at each step so that subsequent classifiers focus more on the harder cases. The final prediction is made by combining the weighted votes of all weak classifiers. AdaBoost is effective at reducing bias and variance, and it’s particularly good for binary classification problems. However, it can be sensitive to noisy data and outliers. Concepts o...

About us

As I am creating this blog right now, I am currently a university student studying diploma in Information Technology with specialism in Data Informatics and I aim to pursue my Bachelor's Degree with the same specialism. Throughout my journey in the field of IT and computer science, I have came across various aspects that are within the field of technology such as web development, blockchain technology, network and security, artificial intelligence and not to forget, Data Analytics which sparks the fire in my heart as I find this field interesting and I aim to become a Data Analyst one day.

This website, QDO origins from the phrases Query and Do. In which in the context of computer science, a query refers to a question or a request and the term do means by executing that request. This outlines the main goal of this website which is to share my knowledge regarding to the field of computer science and information technology to clear the doubts of many. I hope my website will make a significant impact to not just the field of information but also to all people of the Internet so everyone can share their thoughts and reap benefits from this website.

A question that many might raise to me is why i chose the domain of computer science is because the huge job opportunity that is being offered by this field as I believe technology is going to take over the future and grasping knowledge in this field is essential to not just survive but to stand out from others as well in this modern world. I had this interest within me since young due to the influence of my father who is working in the IT field as well as taking the subject of computer science within my Sijil Pelajaran Malaysia (SPM), which is an exam that all students from Malaysian's government school have to sit for and I manage to ace this subject within the exam as well. However, I believe the end of exams and secondary school life doesn't mark the end of my journey but it starts a new chapter of my life and grants me a new chance to pursue my dream in this field.

Not to mention, I previously created a blog called galaxian0212@computerscience.com just to share my SPM notes on common subjects like Malay and English language and most importantly, computer science as well as these notes assisted me in scoring my exam. I believe that my blog had been beneficial to all juniors as merely 2 years after the creation of my blog, I have obtained over 90k total views which is quite fascinating as I never though that my blog would bring such a huge impact upon the juniors and I believe this blog would bring the same amount of impact as well.

As my final message to the world

Hard work beats talent when talent fails to work hard. Try your best, no regrets

With that, enjoy the rest of this website to your heart's content.

Comments

Popular posts from this blog

PRINCIPAL COMPONENT ANALYSIS (PCA)

PRINCIPAL COMPONENT ANALYSIS (PCA) Figure 1: PCA This blogpost will bring to you the concept of principal component analysis which is one of the commonly used descriptive analysis that emphasizes of dimensionality reduction. You will learn how to implement this machine learning model in python, its advantages and disadvantages as well as how companies benefits from this machine learning model. What is PCA PCA is a statistical dimensionality-reducing technique. It takes a large set of variables and transforms them into a smaller set, retaining most of the information in the large set. This can be done by identifying the directions along which the data varies the most. These components are orthogonal to one another, capture the maximum possible variance within the data, and hence form a powerful tool for the simplification of datasets without loss of essential patterns and relationships. Concept of  PCA One of the key concepts behind PCA concerns diminishing the complexity of high-di...

LINEAR REGRESSION

 LINEAR REGRESSION Figure 1: Linear regression figure This blogpost will walk you through the concept of linear regression which is another machine learning model under the regression category of supervised learning. Introducing the parameters that you can turn while applying the logistic regression as well as the factors that play a significant impact upon the performance of the linear regression. What is linear regression Linear regression is a machine learning algorithm that could be used in predictive analysis. From predicting prices of houses to sales forecasting, linear regression is undoubtedly the first choice to many data scientists to implement within the dataset. In short, linear regression involves plotting your data on the graph base on the x and y coordinate and proceed to draw the best fit line upon the graph. The best fit line will be used as a reference to predict the independent variable in the future. However, do you have the skill to conduct a excellent analysis...

DECISION TREE

 DECISION TREE Figure 1: Decision Tree      This blogpost aims to introduce to you regarding to a machine learning model called decision trees. After reading this blogpost, you are able to deepen your knowledge on the concepts of decision trees model, its terminology, pros and cons as well as its application in real life scenarios that lends a hand in solving complex problems thus boosting the living quality of many.  What is decision tree      Imagine you’re wondering through a forest, each path branching off into multiple directions, and you need to make a series of decisions to escape the forest. Now, picture having a map that not only shows you all possible routes but also guides you on the specific conditions you encounter. Decision trees model which applies various splitting criteria's within the branches assists the user in decision making purposes. Compared to regression models which applies complex mathematical formulas like logistic regr...