nschaetti / EchoTorch

A Python toolkit for Reservoir Computing and Echo State Network experimentation based on pyTorch. EchoTorch is the only Python module available to easily create Deep Reservoir Computing models.
https://nschaetti.github.io/echotorch.github.io/
GNU General Public License v3.0
441 stars 117 forks source link

Not able to run the examples #11

Closed ubwingslab closed 5 years ago

ubwingslab commented 5 years ago

Hi Nils, I just installed EchoTorch and tried to run one of the examples provided by EchoTorch. After running: python validation_10cv.py, it raised the following errors. It is the same on Windows and Ubuntu. Thanks.

Traceback (most recent call last): File "validation_10cv.py", line 25, in from echotorch import datasets File "C:\Users\guan\AppData\Local\Continuum\anaconda3\lib\site-packages\echotorch__init__.py", line 5, in import datasets ModuleNotFoundError: No module named 'datasets'

BruceBinBoxing commented 5 years ago

I have the same problem @ubwingslab have you solved it?

nschaetti commented 5 years ago

Hi,

The 10CV example is obsolete as I transfered the ReutersC50Dataset class to TorchLanguage. However, I fixed some import errors and tested importing the dataset module and it worked. Which version of Python do you use ?

Regards,

Nils

ubwingslab commented 5 years ago

Hi,

The 10CV example is obsolete as I transfered the ReutersC50Dataset class to TorchLanguage. However, I fixed some import errors and tested importing the dataset module and it worked. Which version of Python do you use ?

Regards,

Nils Thank you very much Nils!