ContraD VS stylegan2-ada-pytorch

Compare ContraD vs stylegan2-ada-pytorch and see what are their differences.

ContraD

Code for the paper "Training GANs with Stronger Augmentations via Contrastive Discriminator" (ICLR 2021) (by jh-jeong)

stylegan2-ada-pytorch

StyleGAN2-ADA - Official PyTorch implementation (by NVlabs)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
ContraD stylegan2-ada-pytorch
1 30
186 3,901
- 1.5%
0.0 2.3
over 2 years ago 3 months ago
Python Python
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

ContraD

Posts with mentions or reviews of ContraD. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-06-04.
  • [D] What is the smallest dataset you styleGAN2 trained?
    2 projects | /r/MachineLearning | 4 Jun 2021
    Well, I've been trying to train a 1024 GAN from scratch on stylegan2-ada-pytorch with a small dataset 300 samples of not so diversity in images of painting faces. Fact is that on first try FID went as low as 71 and started deteriorating. Now I x-flip augmented the dataset (700 images) and at 900kimg FID went 64 but I doubt it will get lower. I lowered the learning rate to 0.0001 as they say it might help... Recently found this way of dataset augmentation... probably will use this https://github.com/jh-jeong/ContraD

stylegan2-ada-pytorch

Posts with mentions or reviews of stylegan2-ada-pytorch. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-10.
  • Samsung expected to report 80% profit plunge as losses mount at chip business
    3 projects | news.ycombinator.com | 10 Oct 2023
    > there is really nothing that "normal" AI requires that is bound to CUDA. pyTorch and Tensorflow are backend agnostic (ideally...).

    There are a lot of optimizations that CUDA has that are nowhere near supported in other software or even hardware. Custom cuda kernels also aren't as rare as one might think, they will often just be hidden unless you're looking at libraries. Our more well known example is going to be StyleGAN[0] but it isn't uncommon to see elsewhere, even in research code. Swin even has a cuda kernel[1]. Or find torch here[1] (which github reports that 4% of the code is cuda (and 42% C++ and 2% C)). These things are everywhere. I don't think pytorch and tensorflow could ever be agnostic, there will always be a difference just because you have to spend resources differently (developing kernels is time resource). We can draw evidence by looking at Intel MKL, which is still better than open source libraries and has been so for a long time.

    I really do want AMD to compete in this space. I'd even love a third player like Intel. We really do need competition here, but it would be naive to think that there's going to be a quick catchup here. AMD has a lot of work to do and posting a few bounties and starting a company (idk, called "micro grad"?) isn't going to solve the problem anytime soon.

    And fwiw, I'm willing to bet that most AI companies would rather run in house servers than from cloud service providers. The truth is that right now just publishing is extremely correlated to compute infrastructure (doesn't need to be but with all the noise we've just said "fuck the poor" because rejecting is easy) and anyone building products has costly infrastructure.

    [0] https://github.com/NVlabs/stylegan2-ada-pytorch/blob/d72cc7d...

    [1] https://github.com/microsoft/Swin-Transformer/blob/2cb103f2d...

    [2] https://github.com/pytorch/pytorch/tree/main/aten/src

  • [R] StyleGAN2-ADA on Power 9?!
    1 project | /r/MachineLearning | 17 Nov 2022
    I am talking about the original Nvidia implementation here: https://github.com/NVlabs/stylegan2-ada-pytorch
  • This X Does Not Exist
    1 project | news.ycombinator.com | 25 Sep 2022
    I think you should be able to find a latent vector that returns a cat that is part of the original training data (or at least very close to it). Most of the outputs will not be real cats at all though. However, it's pretty simple to try and find the latent vector that reproduces a given image, e.g. https://github.com/NVlabs/stylegan2-ada-pytorch/blob/main/pr...
  • [P] Frechet Inception Distance
    3 projects | /r/MachineLearning | 25 Jun 2022
    One irritating flaw with FID is that scores are massively biased by the number of samples, that is, the fewer samples you use, the larger the score. So to make comparisons fair it's absolutely crucial to use the same number of samples. From what I've seen on standard benchmarks it's pretty common now to compute Inception features for every single data point, but only for 50k samples from generative models (for reference off the top of my head StyleGAN2-ADA does this, see Appendix A).
  • generating images
    1 project | /r/DeepLearningPapers | 28 Apr 2022
    You can follow the development of stylegan from NVIDIA: https://github.com/NVlabs/stylegan2-ada-pytorch They have formed datasets containing human faces, maybe you can use human faces with expressions as classes and train conditional GAN with your own classes.
  • What is the best GAN architecture for image data augmentation?
    1 project | /r/learnmachinelearning | 26 Apr 2022
    Given the lack of data StyleGan 2 by Nvidia, which was specifically created to handle small datasets could be an option - https://github.com/NVlabs/stylegan2-ada-pytorch
  • City Does Not Exist
    2 projects | news.ycombinator.com | 3 Mar 2022
    First, you have to collect a few thousand images of the same thing (maybe more or less depending on how complex your thing is or how good the results should be). Then, you train a generative adversarial neural network on those images to generate new images. https://github.com/NVlabs/stylegan2-ada-pytorch works quite well. https://github.com/NVlabs/stylegan3 is supposedly even better, but I did not try it yet.
  • Modern Propaganda (this person does not exist)
    3 projects | /r/ukraine | 1 Mar 2022
  • From 53% to 95% acc - Real vs Fake Faces Classification | Fine-tuning EfficientNet (Github in comment)
    1 project | /r/deeplearning | 12 Jan 2022
    What NVIDIA does when computing Perceptual Path Length is to center crop the faces before computing the metric. Here you can find the code to get an idea https://github.com/NVlabs/stylegan2-ada-pytorch/blob/main/metrics/perceptual_path_length.py
  • StyleGAN2 ADA Pytorch ends after tick 0 with no errors.
    1 project | /r/MLQuestions | 7 Oct 2021
    I\m trying to train StyleGAN2 ADA Pytorch https://github.com/NVlabs/stylegan2-ada-pytorch on my own dataset.

What are some alternatives?

When comparing ContraD and stylegan2-ada-pytorch you can also consider the following projects:

co-mod-gan - [ICLR 2021, Spotlight] Large Scale Image Completion via Co-Modulated Generative Adversarial Networks

stylegan3 - Official PyTorch implementation of StyleGAN3

similarity - TensorFlow Similarity is a python package focused on making similarity learning quick and easy.

pixel2style2pixel - Official Implementation for "Encoding in Style: a StyleGAN Encoder for Image-to-Image Translation" (CVPR 2021) presenting the pixel2style2pixel (pSp) framework

DETReg - Official implementation of the CVPR 2022 paper "DETReg: Unsupervised Pretraining with Region Priors for Object Detection".

BigGAN-PyTorch - The author's officially unofficial PyTorch BigGAN implementation.

pytorch-CycleGAN-and-pix2pix - Image-to-Image Translation in PyTorch

StyleFlow - StyleFlow: Attribute-conditioned Exploration of StyleGAN-generated Images using Conditional Continuous Normalizing Flows (ACM TOG 2021)

LinkDist - Distillation Self-Knowledge From Contrastive Links to Classify Graph Nodes Without Passing Messages.

lucid-sonic-dreams

AdamP - AdamP: Slowing Down the Slowdown for Momentum Optimizers on Scale-invariant Weights (ICLR 2021)

data-efficient-gans - [NeurIPS 2020] Differentiable Augmentation for Data-Efficient GAN Training