Hello, I encountered the error of ' 'method' object is not iterable' when i ran the run_imputation.py, i tried many methods, but none of them solved. Do you know the reason?
i found the problem was in tsl.data.batch.py:
for k in elem.keys:
the elem.keys is actually the keys () method in the Data object, not an iterative object that can be iterated directly.
Hello, I encountered the error of ' 'method' object is not iterable' when i ran the run_imputation.py, i tried many methods, but none of them solved. Do you know the reason?