You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I try to reproduce your works. joint.py call load function from tflib/mnist_disjoint.py and tflib/svhn_disjoint.pybut this repository don't include it. so python joint.py --dataset mnist --result_path mnist_joint/ got error as below
File "joint.py", line 170, in <module>
train_gen, dev_gen, _ = lib.mnist_disjoint.load(BATCH_SIZE, all_classes, data_dir = DATASET_DIR)
AttributeError: 'module' object has no attribute 'mnist_disjoint'
I found mnst.py file have disjoint_mnst subroutine and mnist.load also return result of l disjoint_mnist. So I replace lib.mnist.load instead of lib.mnist_disjoint.load It works but I'm not sure it's your original intention or not. Plz confirm it.
moreover, joint.py don't have option for other dataset such as LSUN. and tflib/lsun.py don't have def of disjoint_lsun not same as mnist.py or svhn.py. if you try disjoin for lsun dataset, plz comment on it.
The text was updated successfully, but these errors were encountered:
Dear @WuChenshen
I try to reproduce your works.
joint.py
call load function fromtflib/mnist_disjoint.py
andtflib/svhn_disjoint.py
but this repository don't include it. sopython joint.py --dataset mnist --result_path mnist_joint/
got error as belowI found
mnst.py
file havedisjoint_mnst
subroutine andmnist.load
also return result of ldisjoint_mnist
. So I replacelib.mnist.load
instead oflib.mnist_disjoint.load
It works but I'm not sure it's your original intention or not. Plz confirm it.moreover, joint.py don't have option for other dataset such as LSUN. and
tflib/lsun.py
don't have def ofdisjoint_lsun
not same asmnist.py
orsvhn.py
. if you try disjoin for lsun dataset, plz comment on it.The text was updated successfully, but these errors were encountered: