Nice to see you 馃憢

Hi, my name is Michal. I’m describing my (side) projects in this blog page. Moreover I’m an AI researcher on MTS position in Advanced Micro Devices. I develop and explore solutions leveraging neural networks to replace traditional analytical algorithms utilized in graphics rendering.

Pytorch - How to speed up data loading

In the Single Image Super Resolution with various prediction networks post, we used DIV2K and Flicker2K dataset for training. Below is a python snippet for both datasets. from glob import glob import torch from torch.utils.data import Dataset import torchvision from PIL import Image import numpy as np class SuperResolutionDataset(Dataset): def __init__(self, dataset_path, dataset_name_HR, dataset_name_LR, scale, name): self.name = name self.dataset_path = dataset_path self.dataset_name_HR = dataset_name_HR self.dataset_name_LR = dataset_name_LR self.scale = scale self....

January 19, 2025 路 6 min 路 Micha艂 Znale藕niak

Single Image Super Resolution with various prediction networks

The goal of single-image super-resolution (SISR) is to transform a low-resolution image into a high-resolution version, enhancing both its detail and quality. This process, called upscaling, increases the image鈥檚 spatial resolution while sharpening and clarifying its visual features. While the objective remains the same, the methods to achieve SISR can vary. In this post (Part 1), I鈥檒l explore three different neural network-based SISR approaches: color prediction, residual prediction, and kernel prediction....

January 12, 2025 路 9 min 路 Micha艂 Znale藕niak

Contrastive Hierarchical Clustering

In this post, I would like to introduce you to CoHiClust, a Contrastive Hierarchical Clustering model based on deep neural networks, which can be applied to typical image data. CoHiClust distills the base network into a binary tree without access to any labeled data. CoHiClust outperforms the established and popular Agglomerative Clustering and generates a hierarchical structure of clusters consistent with human intuition and image semantics. You can access the full paper of CoHiClust by clicking here....

March 24, 2024 路 12 min 路 Micha艂 Znale藕niak