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

What You Need To Know About C++ Gaussian Error Linear Units

In this post, you’ll learn what a Gaussian Error Linear Unit is. How does the GELU function work in ANN? Where can GELU be applied to AI technologies? By learning C++ Gaussian Error Linear units, it will help you to build C++ applications with the use of C++ IDE. What is an activation function? An Activation Function( phi() ) also called astransfer function, orthreshold…
Read more
C++C++11C++14C++17Learn C++

What You Need To Know About std::basic_string In Modern C++

In this post, you’ll learn what a basic string is in modern C++ and how to use it. Is std::basic string equivalent to std::string? By learning more about std::basic string, it will help you to easily build C++ applications using the C++ IDE. What is basic_string? The basic_string (std::basic_string and std::pmr::basic_string) is a class template that stores and manipulates sequences…
Read more
C++Language FeatureLearn C++

How to Create a New 64bits VCL Component in C++ or Delphi

How can I create a new 64bits VCL Component? How can I use the New Component menu? How can I use and fill the New Component Wizard for the 64bits VCL applications? What is a Component in C++? What is an Object in C++? Let’s answer these questions. Note that this article uses C++ Software for its example, but the process for Delphi applications is exactly the same. One of the most…
Read more
C++Introduction to C++Language FeatureLearn C++

How To Make A New Windows FMX Component In C++

One of the most powerful features of the C++ Builder is its own components that can be used with or without a visual representation. Components make programming easy, you can do many operations easily without knowing low-level coding. Every component that you drag into your forms is an object of that component class. For example TEdit is a Class Type, a Component, and Edit1 is an Object from the…
Read more