Artificial Intelligence TechC++C++11C++14C++17Learn C++

What Is The Hyperbolic Tangent Activation ANN Function?

What is a hyperbolic Tangent function? How can we use Hyperbolic Tangent Function in C++? Let’s answer these questions. What does an activation function mean in AI? Activation Function ( phi() ) also called as transfer function, or threshold function that determines the activation value ( a = phi(sum) ) from a given value (sum) from the Net Input Function . Net Input Function…
Read more
Artificial Intelligence TechC++C++11C++14C++17Learn C++

Why You Should Know ELU Artificial Neural Net Functions

In this post, we will explain what an Exponential Linear Unit, or ELU, is. How can we make use of an ELU Activation Function? By learning all of these, you will be able to create C++ applications using C++ software. What do we need to know about activation functions? An Activation Function ( phi() ) also called as transfer function, or threshold function, determines the activation value…
Read more
Artificial Intelligence TechC++Learn C++

This Is How To Make Artificial Neuron Models in C++

What is a simple artificial neuron in C++? How can we code a simple AI neuron in C++? Should we use arrays, classes, or structs? In previous AI Tech posts, we answered all these questions. In this post, we will list all the simple AI models in C++. There can be many models depending on your research. We have tried to keep these posts simple to understand the different ways of AI programming in C++…
Read more
Artificial Intelligence TechC++C++11C++14C++17Code SnippetLanguage FeatureLearn C++

How To Import FANN Library For C++ Builder Windows Projects

This article is about to help you on implementing an Artificial Neural Network by using FANN Library developed by Steffen Nissen. It supportsmore than 20+ programming languages (http://leenissen.dk/fann/wp/language-bindings/) including Delphi and C++ Builder. You can reach full information anddocumentation here and you can download FANN source files from theirweb page…
Read more