© 2023 Hashnode
#pytorch
Are you intrigued by the generative models, and curious about how they can create new, realistic data? You're in the right place! Today, we're going to explore an exciting class of generative models known as Diffusion Models. We'll unravel …
In 2017, researchers at Google published a paper that proposed a novel neural network architecture for sequence modelling. The paper was called "Attention Is All You Need" by A. Vaswani et al. The nam…
PyTorch is an open-source machine learning framework designed for building and training neural networks. Developed by Facebook's AI research team, PyTorch is known for its flexibility, ease of use, an…
Introduction Hello! 😃 In this tutorial I will show you how to use AnimeGAN2 models to apply various filters to an input image using PyTorch. The AnimeGAN2 is a generative adversarial network (GAN) ba…
Convolutional Neural Networks (CNNs) are a class of artificial neural networks that are particularly suited for processing data such as images, videos and other multidimensional data. CNNs are best known for their capabilities to find patte…
Introduction Hello! 😃 In this tutorial I will show you how you can use a pre-trained machine learning model to modify an image based on the user's input prompt. The model uses an image editing techni…
What is HuggingFace? Hugging Face is a company and an open-source software library that specializes in natural language processing (NLP) and deep learning technologies. The company is based in New Yor…
It's been a while. And I'm digging into Machine Learning. I was watching the excellent video by Andrej Karpathy about how to write a GPT (of which GPT-3 is an example) from scratch, using the paper "…
Python is a popular programming language used in data science, and one of the reasons for its popularity is the vast array of libraries available. These libraries provide pre-built functions and tools…
PyTorch is one of the main libraries when it comes to Deep Learning in Python. Tensors, the key data structure of the framework, can be manipulated in multiple ways. One of the available methods is th…