What is Self Regularized Non-Monotonic Activation Function in Neural Networks? How we can use the Mish function in ANN? Where can we use Mish in AI technologies? Let’s remember the activation function and explain these terms.Activation Function( phi() ) also called astransfer function, orthreshold functionthat determines the activation value ( a = phi(sum) ) from a…
Learn about C++ Encapsulation
May 8, 2021
Object Oriented Programmingis a way to integrate with objects which can containdata(in the form of attributesorpropertiesof objects), andcode blocksin the form of procedures (methods,functionsof objects). These…
Discover Class Methods in C++
May 7, 2021
Object-Oriented Programmingis a way to integrate with objects that might containdata(in the form of attributesorpropertiesof objects), andcode blocksin the form of procedures (methods,functionsof objects). These…
Learn about Access Specifiers in C++ Classes
May 4, 2021
Object-Oriented Programmingis a way to integrate with objects which can containdatain the form (attributesorpropertiesof objects), andcode blocksin the form of procedures (methods,functionsof objects). These attributes and methods arevariablesandfunctionsthat belong to the class, they are generally referred to…
Object-Oriented Programmingis a way to integrate with objects which can containdatain the form (attributesorpropertiesof objects), andcode blocksin the form of procedures (methods,functionsof objects). These…
Learn about Data Structures in C & C++
April 30, 2021
In general, when we do programming we have a lot of variables and some of these variables are properties of an object, for example if we want to make a database about students in C++, each student has similar properties to store. We can generalize all these properties in a…
Learn to Use Constant References in C++ Functions
April 28, 2021
When we call a function with parameters taken by value, it copies the values to be made. This is a relatively inexpensive operation for fundamental types such as int, float, etc. If the parameter is composed of a large compound type, this may result in a certain overhead. For example, let’s consider this following function to combine name, mid name, and surname.
string fullname (string…
Learn to Use Function Templates in C++
April 27, 2021
A Template is a simple and a very powerful statement in C++. A Template Function may have multiple template parameter types, and the function can still use regular non-templated types. In a previous post, about Function Overloading, we had two add() functions working with…
Learn to Use Parameters in Functions in C++
April 23, 2021
In the C++ programming language, we can add functions with many parameters, each parameter may have different types. We can add as many parameters as we want by defining its type and its name to be used inside that function separated with ‘,’ coma. We can shape…
Learn About Function Declaration and Definition in C++
April 22, 2021
In C and C++ programming language there are two parts of a function, Declaration, and Definition.
Function Declarationis the combination of the return type of function, function’s name, and parameters in parenthesis.Function Definitionis the body of the function includes statements and other functions.
In general use, they are defined together as below,
myfunction() // this…