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++C++11C++14C++17Learn C++

How To Make AI Binary/Heaviside Step Functions In C++

In this post, you’ll learn what is a Binary Step Function? Should we use Binary Step Function or Heaviside Step Function? Are Binary Step functions and Heaviside Step functions the same thing? What is a Unit Step Function? By learning how To Make AI Binary/Heaviside Step Functions In C++, it will help you to build C++ applications with the use of a C++ IDE. What is an activation function…
Read more
C++C++11C++14C++17Introduction to C++Learn C++

How To Use Smart Pointers For Dynamic C++ Memory Management

In computers, all data and operations during runtime are stored in the memory of our computers, IoTs, or in other microdevices. This memory is generally a RAM (Random Access Memory) that allows data items to be read or written in almost the same amount of time, irrespective of the physical location of data inside the memory. In this post, you’ll learn how to use Smart Pointers for Dynamic C++…
Read more
C++C++11C++14C++17Introduction to C++Learn C++

How To Use C++ front() And back() Methods Of Vectors

In this post, you’ll get answers to these questions: What are the Vectors in C++?How can I use the front() iterator method on vectors?How can I use the back() iterator method on vectors?Can I get the last member of a vector by using the back() method?How can I access the first element of a vector?Can I print out the first and the last members of vectors by using the front() and back()…
Read more