WuJie1010 / Facial-Expression-Recognition.Pytorch

A CNN based pytorch implementation on facial expression recognition (FER2013 and CK+), achieving 73.112% (state-of-the-art) in FER2013 and 94.64% in CK+ dataset
MIT License
1.78k stars 548 forks source link

os.popen #127

Open hdy0715 opened 2 years ago

hdy0715 commented 2 years ago

请问一下这句code的参数是不是有问题呀 _, term_width = os.popen('stty size', 'r').read().split() term_width = int(term_width) 当我run mainproCK+.py时会有这样的错误 , term_width = os.popen('stty size', 'r').read().split() ValueError: not enough values to unpack (expected 2, got 0)

zyh0317 commented 2 years ago

我也遇到了这个问题,请问下解决了吗?