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.
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.