Algorithms Find K closest numbers to a given value In this article, we will explore on how to find the K closest numbers to a given value in a given set of numbers. We have presented two approaches using the concepts of binary search and Heap data structure.
Web Development Develop Menu-based Help Chatbot using HTML, CSS and JavaScript In this article, I will explain a menu-based chatbot designed and implemented using HTML, CSS, Bootstrap, JavaScript, and jQuery. It is deployed as a prototype to OpenGenus IQ's homepage.
Deep Learning Knowledge Distillation in DL In this article, we have explored the concept of Knowledge Distillation in Deep Learning.
System Design Database Clustering Database clustering is a technique used to increase the availability, scalability, and reliability of a database system.
Data Communication and Computer Networks FTP and SFTP In this article, we have covered the concept of FTP (File Transfer Protocol) and SFTP (Secure File Transfer Protocol) along with different types of FPT session and its use-cases.
Python Multi-threaded Python code to find Prime Numbers using Sieve of Eratosthenes In this article, we have designed and implemented a Multi-threaded Python code to find Prime Numbers using Sieve of Eratosthenes.
Natural Language Processing (NLP) Sentiment analysis with NLP Sentiment Analysis is the method of locating and extracting subjective information from text data. It entails determining whether the emotional bias of a text is positive, negative, or neutral by looking at its contents.
System Design Database mirroring and log shipping Today, we are going to discover or learn more about how a SQL database can be safely backed up. What is database mirroring? What is Log shipping? Are they different?
C++ Reverse string in C++ [6 methods] In this article, we have covered 6 different approaches to reverse a string in C++ Programming Language.
Python Install torchvision without upgrading torch In this article, we have explored how to pip install torchvision without upgrading torch.
Data Communication and Computer Networks 100+ Key terms in Computer Network This article list and explain the critical components, key terms and topics of Computer Network. We have covered over 100+ terms.
Python PNG to JPEG Conversion Flask Web Application [Python] In this article, we have developed a Web Application using Python based web framework that is Flask that will provide an option to upload a PNG image file, convert it to JPEG format from server side and give option to download the converted JPEG file.
Deep Learning Pancreas Segmentation using Attention U-Net [with code] In this article, we are going to walk through a smart way to reduce the computation power needed for an biomedical image analysis which is attention and its use in computer vision tasks. We solve the problem of Pancreas Segmentation using Attention U-Net and implement it in Python using TensorFlow.
Deep Learning DetectGPT Model: Detect text generated by GPT3 In this article, we'll be discussing DetectGPT, a natural language processing model that's been developed to detect whether a given text was generated by machine or written by a human.
Natural Language Processing (NLP) Stemming in NLP The aim of this article would be to elaborate upon the third example i.e. Stemming - the concept behind it, it's use cases, suitability and implementation in Python and to provide a basic idea of said topic to the readers.
CSS 15 Different units in CSS CSS (Cascading Style Sheets) is a styling language used for describing the presentation of HTML documents. CSS has several units for specifying different types of measurements and values. In this essay, we will look at all the units available in CSS.
Python Generate Secure Random Passwords in Python In this article, we have developed a script in Python Programming Language to generate secure random passwords.
System Design Partition tolerance after the 2000s In this article, we will focus on partition tolerance when designing a system and how the idea of partition tolerance changed along with the evolution of internet connection, this idea of choosing 2 of 3 items on the CAP theorem still exists?
JavaScript JavaScript Debugging Error will most likely occur whenever you write a code. The debugger in JavaScript is a function that request any available debugging functionality, such as setting a breakpoint. If no debugging functionality is used, it will have no effect on the code.
Natural Language Processing (NLP) Tokenization in NLP [Complete Guide] In this article, we will look at the different approaches to tokenization and their pros and cons in Natural Language Processing (NLP).
Machine Learning (ML) 3 Types of Naive Bayes In this article, we have explored the 3 different types of Naive Bayes classification algorithm in depth.
Deep Learning Problems in Deep Learning (DL) Today, we will be discussing the challenges faced by developers while working with deep learning models. Despite the impressive capabilities of deep learning models, there are various challenges that developers face while building and deploying them.
System Design Thundering Herd Problem In this article, we will be learning about Thundering Herd Problem. This is one of the issue that occurs in Computer Systems during multi-threading.
Deep Learning Markov Chain in Neural Network In this article, we have explored the concept of Markov chain along with their definition, applications, and operational details. We have covered how Markov Chain is used in the field of Deep Learning/ Neural Network.
Natural Language Processing (NLP) N-gram language model in NLP In this article, we will explore what N-gram models are, how they work, their advantages and disadvantages, and finally, we'll provide an example of how to implement an N-gram model.