Cloning into 'sentiment-discovery'...
Traceback (most recent call last):
File "setup.py", line 71, in <module>
libaten = find(torch_dir, re.compile("libaten", re.IGNORECASE).search, False)
File "setup.py", line 31, in find
return list(set(collection))
TypeError: 'NoneType' object is not iterable
I think it might have been a naming change in the newest version of torch. I changed re.compile("libaten", re.IGNORECASE) to re.compile("aten", re.IGNORECASE) and it seems to be working now.
I think it might have been a naming change in the newest version of torch. I changed re.compile("libaten", re.IGNORECASE) to re.compile("aten", re.IGNORECASE) and it seems to be working now.