Deep Learning Concatenation Operation in CNN In this article at OpenGenus, we will explore the notion of Concatenation operation in CNN in detail.
linked list Implementing Linked list in Python using OOP concepts In this article at OpenGenus, let's understand how to implement a Linked List in Python using OOP concepts.
Deep Learning Predicting Bike Sharing Demand In this article at OpenGenus, we will work on predicting bike sharing demand using a dataset provided by University of California, Irvine. The dataset contains count of public bikes rented at each hour in Seoul Bike sharing System with the corresponding Weather data and Holidays information.
Deep Learning Different types of Attention Mechanism This article at OpenGenus aims to explore and walk you through the main types of Attention Mechanism models and the main approaches to Attention.
Python Different ways to implement Softmax in Python It is first important to understand what the Softmax function is and what is it used for. Softmax is an important function within neural networks in Machine Learning. A neural network is essentially a method within Deep Learning that acts like a human brain.
Python Language Translation in Python In this article at OpenGenus, we will be talking about how I create a language translation program using the python 3 programming language. This program is able to translate user input from english to arabic.
Ruby Programming Implement graph in Ruby [adjacency list and matrix] In this article at OpenGenus, we are going to be talking about the graph data structure and how it is used with the programming language of Ruby.
Linux Why is #! the first line in shell scripting ? When the first line starts with #!, the kernel scans the rest of the line for full pathname of the interpreter to run the program.
Machine Learning (ML) Implement One-hot encoded array in Python In this article at OpenGenus, we will learn to implement one-hot encoded array in Python Programming Language using Numpy, Scikit-Learn, Pandas, Keras, TensorFlow and Built-in Python methods.
Software Engineering Why should you develop with auth0? In this article at OpenGenus, we are going to learn about auth0, develop a really simple application with it, think about the pros and cons of using auth0 on your applications?
UX Design Serial Position Effect in UX The serial position effect is a psychological concept that describes how people tend to remember the first and last things in a list better than the things in the middle. This phenomenon has been observed in various situations, including user experience design.
C++ Convert C and C++ code to Assembly Code In this article at OpenGenus, we have explained how to convert / compile a C or C++ code to Assembly code using GCC or G++ compiler.
Python Doubly Linked List in Python using OOP concepts In this article at OpenGenus, we will design doubly linked list and implement using OOP concepts in Python Programming Language.
Python Python script to make images black and white In this article at OpenGenus, we learn how to convert Images to black and white using python script using Pillow and OpenCV.
Operating System Sleeping Barber Problem The sleeping barber problem is a synchronization problem in computer science that deals with the management of a shared resource by multiple processes. The problem is presented in the example of a barber shop where there is one barber who cuts hair and a number of chairs for waiting customers.
Machine Learning (ML) Random Forest Classification In this article at OpenGenus, we have explained the concept of Random Forest Classification in depth along with model implementation in Python.
Machine Learning (ML) Decision Tree Classification In this article at OpenGenus, we have explained the concept of Decision Tree Classification in depth along with model implementation in Python.
git A Comprehensive Guide to Git - All you need for VCS Our Git cheat sheet covers everything from the basics, such as creating a new repository, committing changes, and branching and merging code, to more advanced tasks like resolving merge conflicts and rebasing code.
HTML Comprehensive Guide to HTML tags This HTML cheat sheet at OpenGenus provides a comprehensive list of all the essential HTML tags and their attributes, making it an excellent resource for both beginners and experienced developers.
Software Engineering Comprehensive list of commands for Windows PowerShell PowerShell is a powerful command-line tool that is included with Microsoft Windows. It provides a flexible and efficient way to manage and automate tasks on your system, from basic file operations to complex administration tasks.
JavaScript Comprehensive List to NPM Commands In this article at OpenGenus, we've put together a comprehensive list of all the NPM commands you'll ever need, along with explanations of what they do and how to use them.
Database Management System (DBMS) Cluster Indexing Cluster indexing is a technique used in database management systems (DBMS) to improve the efficiency of queries involving range searches and sorting. It involves organizing the data in a table based on one or more attributes, called the clustering key.
UX Design Law of Proximity in UX Design Law of Proximity in UX Design states that the elements that are closed to each other are perceived to be a part of the same group & elements that are separated from each other are perceived to be a part of different groups.
Operating System The Lock Convoy Problem in OS The Lock Convoy Problem is a performance problem that can occur when using locks for concurrency control in a multithreaded application.
Database Management System (DBMS) Primary Indexing in DBMS Primary indexing is a type of indexing used in databases to improve the speed of accessing data by creating an index based on the primary key of a table.