Smith FloresActivation functionsActivation functions live inside neural network layers and modify the data they receive before passing it to the next layer. Activation…May 16, 2022May 16, 2022
Smith FloresWhat is IoTAs someone who works for an Internet of Things (IoT) software company, this is a question that I’m asked frequently. Whether it’s a friend…Jan 3, 2022Jan 3, 2022
Smith FloresPython3: Mutable, Immutable… everything is object!!!Python is an object-oriented programming language, and in Python everything is an object. Almost every object has some metadata (called…Oct 11, 2021Oct 11, 2021
Smith FloresClass and instance attributesObject Oriented Programming is not a programming language, but rather a model in which programs are organized around data or objects. OOP…Oct 11, 2021Oct 11, 2021
Smith FloresWhat happens when you type `ls -l *.c` in the shell ?ls is one of the most common commands in a Linux shell and probably the first command that you would use when learning Linux. Let’s take a…Aug 26, 2021Aug 26, 2021
Smith FloresHow integers are stored in memory using two’s complementComputer machines are composed by digital memories that store information in bits (binary digit). It means that a bit is an unit — the…Aug 13, 2021Aug 13, 2021
Smith FloresC - Static librariesWhat are libraries and why use libraries in c ?Jul 17, 2021Jul 17, 2021
Smith FloresCompilation in “C” language with gccThe GNU Compiler Collection is a set of compilers created by the GNU project. GCC originally stood for GNU C Compiler (GNU C Compiler)…Jun 21, 2021Jun 21, 2021