Zeltserj

Results 5 issues of Zeltserj

I needed this in my work and thought it would be cool to incorporate: Given 2 CfgNodes: ## Cfg1: ``` SYSTEM: NUM_GPUS: 2 TRAIN: SCALES: (1, 2) DATASETS: train_2017: 17:...

fixing issue stated in https://github.com/rbgirshick/yacs/issues/54

Running: ``` from yacs.config import CfgNode as CN cfg = CN() cfg["MYKEY"] = CN() cfg.MYKEY[1] = "a_sub_value" print(cfg.dump()) ``` Gives: ``` Traceback (most recent call last): File "/Users/zeltserj/yacs/example/main.py", line 5,...

I ran the CIFAR10 example and I would like to save it so I can run some tests without having to retrain the attack model every time and also be...

Hi, In all the generator classes, the length function seems to be implemented wrong. The implementation: ``` def __len__(self): 'Denotes the number of batches per epoch' return int(np.floor(self.images.shape[1]/self.batch_size)) ``` when...