pfnet-research / tgan

The implementation of Temporal Generative Adversarial Nets with Singular Value Clipping
https://pfnet-research.github.io/tgan
MIT License
78 stars 34 forks source link

ValueError: unsupported pickle protocol: 4 #6

Open WeiWangTrento opened 6 years ago

WeiWangTrento commented 6 years ago

Hi, I downloaded the ucf-101 dataset using the url provided. However, when I try to run the following command: train.py --config_path configs/ucf101/ucf101_wgan_svd_zdim-100_no-beta.yml --gpu 0

the error 'ValueError: unsupported pickle protocol: 4' pops out. which is caused by the code self.conf = pd.read_pickle(config_path)

It seems that it is caused by the conflict of python version. Could you please fix the bug for python 2.7 ?

rezoo commented 6 years ago

Hi, thank you for using our repository! Currently this code only supports python 3 or higher. Could you run this code on python3, or convert this pickle file into another one that can be loaded in python2.7?