Arun Patro
Arun Patro
Hey, I am having difficulty trying to implement the code. Could you please add some content to the readme?
Hi Adam, Your latest paper in IJCV uses compositional voting for generalizing to object detection also. I am not able to find the template code in this repository for the...
I am using `torch.save()` to save a model file. However, everytime I save it, it changes. Why so? ``` netG_1 = torch.load('netG.pth') netG_2 = torch.load('netG.pth') torch.save(netG_1, 'netG_1.pth') torch.save(netG_2, 'netG_2.pth') ```...
Hi, While generating the tfrecords for the dataset, the code here: https://github.com/zalandoresearch/disentangling_conditional_gans/blob/03d5101ba63ed223d310e42584545bb1d53077e0/dataset.py#L79 loads *.tfmasks. But the code in the repo doesn't create tfmasks. Can someone share the format for tfmasks?...
Hi, I couldn't figure out from the Readme.md and https://github.com/zalandoresearch/disentangling_conditional_gans/blob/03d5101ba63ed223d310e42584545bb1d53077e0/dataset.py#L89 about how the label file should be written as. From reading the paper, I understand that your Disentangling Conditional GAN...
I want to extract information using pydantic types, and generate many examples like in the Readme. ```python from pydantic import BaseModel, Field from typing import Literal from dspy.functional import TypedPredictor...