Tag: PyTorch

Introduction to Computer Vision with PyTorch (1/6)

Computer Vision (CV) is a field that studies how computers can gain some degree of understanding from digital images and/or video. Understanding in this definition has a rather broad meaning — it can range from being able to distinguish between a cat and a dog on the picture, to more complex t...

Boosting PyTorch Inference on CPU: From Post-Training Quantization to Multithreading

Welcome to another edition of “The Kaggle Blueprints”, where we will analyze Kaggle competitions’ winning solutions for lessons we can apply to our own data science projects. This edition will review the techniques and approaches from the “BirdCLEF 2023&rdqu...

Build your own Transformer from scratch using Pytorch

In this tutorial, we will build a basic Transformer model from scratch using PyTorch. The Transformer model, introduced by Vaswani et al. in the paper “Attention is All You Need,” is a deep learning architecture designed for sequence-to-sequence tasks, such as machine translation and tex...

How to Build an AI-Powered Game Bot with PyTorch and EfficientNet

This article will guide you through creating an AI model that can play the popular Chrome Dino Game using PyTorch and EfficientNet. OpenAI, the organization that developed ChatGPT, actually started by building AI models that could play Atari games. This project, known as the Atari AI, was one of ...

Unleash Your Creativity by Creating Anime Characters Using DCGANs and PyTorch

Ignite your inner artist and tap into the power of data science! Anime’s enchanting realm has captivated millions, offering a canvas for limitless imagination. Now, envision crafting your own one-of-a-kind anime characters that spark inspiration and use them to weave tales. Join us on a j...

Backpropagation — Chain Rule and PyTorch in Action

The modern businesses rely more and more on the advances in the innovative fields like Artificial Intelligence to deliver the best product and services to its customers. Many of production AI systems is based on various Neural Networks trained often using a tremendous amount of data. For development...