styler00dollar

Results 8 issues of styler00dollar

## To Reproduce ```python # https://github.com/bilibili/ailab/blob/main/Real-CUGAN/VapourSynth/upcunet_v3_vs.py import torch import torch_tensorrt from torch import nn as nn from torch.nn import functional as F import os,sys import numpy as np from tqdm...

bug

## Description I want to have multithreaded inference, since normal inference results in about 10% GPU usage, but it does not seem to work. ## Steps To Reproduce Here is...

triaged

Is this project supposed to work with PyTorch Lightning? I tried to add it and it seems like in terms of speed nothing changed after adding `@accelerate_model()` and `@accelerate_dataset()`. The...

Like I already mentioned in [Issue 13](https://github.com/musco-ai/musco-pytorch/issues/13#issuecomment-812170929), the demo code seems to crash with an error. ``` from torchvision.models import resnet50 from flopco import FlopCo from musco.pytorch import CompressorVBMF, CompressorPR,...

Ensembling is used in frame interpolation to drastically improve visual quality by using different predictions and generating a mean. [Here](https://arxiv.org/pdf/2011.01280.pdf) is a paper talking about ensembling. ![image](https://user-images.githubusercontent.com/51405565/174501840-311dd59b-88c7-4798-8d02-29a70e4b810a.png) Rife does use...

## Bug Description `nn.PixelShuffle` should work, but it does not. ## To Reproduce ```python from torch import nn as nn import torch class mynet(nn.Module): def __init__(self): super(mynet, self).__init__() self.conv =...

bug
component: conversion
component: partitioning

## Bug Description Compiling model fails if `nn.PReLU` is used. It works fine with `nn.ReLU`. ## To Reproduce Just run this code ```python from torch import nn as nn from...

bug
component: converters
component: partitioning

I like this repo, but I noticed that it does not work with a recent version of kornia. `RandomMixUp` and `RandomCutMix` got replaced with [RandomMixUpV2](https://kornia.readthedocs.io/en/latest/augmentation.module.html#kornia.augmentation.RandomMixUpV2) and [RandomCutMixV2](https://kornia.readthedocs.io/en/latest/augmentation.module.html#kornia.augmentation.RandomCutMixV2) in kornia. Would...