Creating a Neural Network to Invent the Conversion Formula from Hours to Minutes Using Python and TensorFlow

Creating a Neural Network to Invent the Conversion Formula from Hours to Minutes Using Python and TensorFlow

Tiempo de lectura: 3 minutos Reading time: 3 minutes Today I’m going to show you how to create a small neural network capable of predicting the conversion formula from hours to minutes. To create this Artificial Intelligence, we’re going to use TensorFlow, a library created by Google that will make things easier for us. To install it, we run: python3 … Read more

Installation and Configuration of Python and fastAPI for a Project in Visual Studio Code

Installation and Configuration of Python and fastAPI for a Project in Visual Studio Code

Tiempo de lectura: 2 minutos Reading time: 2 minutes You must have Ubuntu installed on Windows and a project created in Visual Studio Code beforehand. Here are the following helpful links: Install Ubuntu on Windows Create project in Visual Studio using commands in Ubuntu In the Visual Studio Code terminal, install Python3 as shown below: sudo apt install python3-pip To … Read more

Create a Project in Visual Studio Code Using Ubuntu Console on Windows with WSL/WSL2 to Use FastAPI.

Create a Project in Visual Studio Code Using Ubuntu Console on Windows with WSL/WSL2 to Use FastAPI.

Tiempo de lectura: 2 minutos Reading time: 2 minutes You must have previously installed Ubuntu on Windows, I’ll leave you the following helpful link: Install Ubuntu on Windows Once we have Ubuntu installed, I’m going to create a folder within home using commands where we will place our project. sudo mkdir proyectoDevCodeLight We modify the permissions to allow us to … Read more

Adding Commands to a Telegram Bot (Python)

Adding Commands to a Telegram Bot (Python)

Tiempo de lectura: 4 minutos Reading time: 3 minutes Following the previous day’s post How to Make a Telegram Bot (Python), we will complete this Python script to add command functionality to the bot. Commands are used to instruct the bot to perform specific functions. A command is written in the Telegram chat in the following format: /command Let’s make … Read more