Top Visual Studio Code Extension for Python Development

Visual Studio Code is highly extensible and customizable. Take a look at some of the extensions that make Python development in VSCode a better experience. 1. Python by Microsoft An extension with rich support for the Python language (including Python 3.6), including features such as linting, debugging, IntelliSense, code navigation, code formatting, refactoring, unit tests, snippets, and… Continue reading Top Visual Studio Code Extension for Python Development

Python For Loops

When you’re working with data in Python, for loops can be a powerful tool. But they can also be a little bit confusing when you’re just starting out. In this tutorial, we’re going to dive headfirst into for loops and learn how they can be used to do all sorts of interesting things when you’re doing data… Continue reading Python For Loops

Training of your first neural network: A Basic classification

Documentation on Neural Network: theroyakash This guide trains a neural network model to classify images of clothing, like sneakers and shirts. It's okay if you don't understand all the details; this is a fast-paced overview of a complete TensorFlow program with the details explained as we go.This guide uses tf.keras, a high-level API to build and… Continue reading Training of your first neural network: A Basic classification