Machine Learning (ML) Exploration-Exploitation Dilemma The exploration-exploitation dilemma is a concept that describes the challenge of deciding between exploring new options or exploiting already known options to maximize rewards.
HTML Javascript:void(0) and # in href in HTML links Both javascript:void(0) and # are commonly used in the href attribute of HTML links, but they have different meanings and purposes. In this article, we have explored both in depth with code examples.
C++ Delete elements in a priority queue in C++ STL [4 methods] In this article, we have presented different ways to delete elements in a priority queue in C++ STL. There are 4 different methods such as pop, clear and much more.
Machine Learning (ML) 9 Advantages and 10 disadvantages of Naive Bayes Algorithm In this article, we'll talk about some of the key advantages and disadvantages of Naive Bayes algorithm.
Python Python datetime lambda In this article, we have explained how to extract date and time in Python using 4 different Lambda functions.
C Programming [FIXED] Undefined reference to 'pow', 'floorf' and 'floor' In this article, we have presented 3 ways to fix the error "Undefined reference to 'pow', 'floorf' and 'floor'" while compiling C programs.
Blockchain Blockchain: A Revolutionary Technology - Benefits, Challenges, Future Blockchain is a ground-breaking technology that has skyrocketed in popularity recently. It functions as a decentralized, digital ledger that keeps track.
C Programming struct vs union vs enum in C In this article, we will have a look at what actually is Structure, Union and Enumeration in C and will have look at differences between them.
C Programming C Program to calculate Simple Interest In this article, we have explained the concept of Simple Interest with the twists in it and implemented a program in C Programming Language to calculate Simple Interest.
Java Inheritance in Java: Basics, Advantages and Best Practices In Java, inheritance is accomplished via extending a class, which allows the new class to take on the parent class's methods and properties. In this post, we'll examine the fundamentals of Java inheritance and look at its benefits for OOP.
C Programming Read and write to text file in C In this article, we have explained how to read and write to a text file in C programming language using multiple C code examples.
Natural Language Processing (NLP) Polarity and Subjectivity in NLP Polarity and subjectivity are two important concepts in natural language processing (NLP) that help machines understand the sentiment and emotions conveyed in human language. In this article, we'll explore these two concepts in depth and how they are used in NLP.
Computer Architecture Exploring Architecture of CPU This article delves into the technical aspects of the architecture, including key terminology and diagrams, to help readers develop a thorough understanding of how the core CPU operates.
Algorithms Schedule Events in Calendar Problem [Segment Tree] In this article, we will discuss the My Calendar 1 problem where we need to schedule events in a calendar such that there is no conflict. This will involve the concept of Segment Tree.
Natural Language Processing (NLP) Kneser-Ney Smoothing / Absolute discounting In this article, we will discuss the process of Kneser-Ney Smoothing and Absolute Discounting, its implementation, pros and cons, use cases, and real-time applications etc.
Reinforcement Learning (RL) 50+ Reinforcement Learning Key Terms: Understanding the Language of RL In this article, we have covered 50+ Key Terms in the domain of Reinforcement Learning. This will give a strong hold on RL.
Machine Learning (ML) CHAID in ML In this article, we have explored the concept of CHAID, or Chi-Squared Automatic Interaction Detector in Machine Learning. This is a core concept in Decision Tree.
C++ Parallel Radix Sort handling positive & negative numbers in C++ In this article, we have designed and implemented Parallel Radix Sort handling positive and negative numbers in C++ Programming Language.
Python python setup.py build develop vs install In this article, we have explained the differences between the two core build commands for Python projects. The two commands are "python setup.py build develop" and "python setup.py install".
Computer Architecture CPU Core [Concept Explained] CPU core technology is a fundamental concept in modern computer architecture. At the heart of every central processing unit (CPU) lies a CPU core that executes instructions and performs calculations.
Algorithms Minimum Deletions to Make Array Divisible [3 Solutions] In this article, we will explore how we can get the minimum number of deletion of smallest element such that the smallest element in the first array divides all the elements in the second array. This will involve the concept of Min Heap and Hash Map.
PyTorch Build torchvision from source In this article, we have explained how to build torchvision from source step by step.
Machine Learning (ML) AUC (Area Under The Curve) and ROC (Receiver Operating Characteristics) In binary classification issues, the metrics AUC (Area Under the Curve) and ROC (Receiver Operating Characteristics) are frequently employed. AUC is a numerical metric that measures the performance of the classifier, whereas ROC is a graphical plot that shows the performance of a binary classifier.
System Design Different database migration strategies In this article we are going to talk about database migration strategies, why it should happen, how it should happen and what is the best option for each case.
C Programming Calendar application in C Programming Language In this article, we will explore how to design and implement a calendar generating command line tool in C Programming Language. Given a year, the tool will print the entire calendar in correct format. This is a good addition to SDE portfolio.