Perceptron is a simple algorithm which, given an input vector x of m values (x1, x2, …, xm), outputs either…
Working with Matrices in TensorFlow
Matrices are the basic elements we use to interchange data through computational graphs. In general terms, a tensor can de…
Understanding Variables and Placeholders in TensorFlow
Usually, when we start using TensorFlow, it’s very common to think that defining variables is just as trivial as a…
Declaring tensors in TensorFlow
[Requirement: Tensorflow and NumPy installed on Python +3.5] [Requirement: import tensorflow as tf] [Requirement: import numpy as np] Tensors are…
Java Streams API in brief
First, let’s define what a stream is in Java 8: a sequence of functions, actions, inputs, and outputs (better defined…
Is it worth it to work as a freelancer?
BACKGROUND Usually many of us graduates from college have dreamed of working in a large company with great salary, prestige…
Cross-Platform Communications: gRPC Server and Client: Node.js
This is my second video on gRPC, this time I was experiencing Node.js to make an app communicate with a…
Cross-Platform Communications: gRPC Server and Client: .NET Core
When we are developing web solutions consisting of several projects, it is very common communicate between each other, and the common…
Installing Redis on Azure Ubuntu VM
In one of my latest developments I needed to have a local Redis for caching requirements. I feel comfortable on…
ASP.NET Core Basics – Part 2
Now, we continue with the series ASP.NET Core Basics. At this time we are been focused in MVC specific topics, which…