running samples
Solved!Posted in General by kwang nam Sat Jul 25 2015 15:51:44 GMT+0000 (Coordinated Universal Time)·3·Viewed 5,196 times
after install your packages and copied under site_packages
when I run your sample code I got these errors
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\elliotnam>python
Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 24 2015, 22:44:40) [MSC v.1600 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from opendeep.log import config_root_logger
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "f:\dd\opendeep\opendeep\__init__.py", line 15, in <module>
from . import data
File "f:\dd\opendeep\opendeep\data\__init__.py", line 8, in <module>
from .standard_datasets import *
File "f:\dd\opendeep\opendeep\data\standard_datasets\__init__.py", line 4, in <module>
from .midi import *
File "f:\dd\opendeep\opendeep\data\standard_datasets\midi\__init__.py", line 3, in <module>
from .jsb_chorales import JSBChorales
File "f:\dd\opendeep\opendeep\data\standard_datasets\midi\jsb_chorales.py", line 14, in <module>
from opendeep.utils.midi import midiread
File "f:\dd\opendeep\opendeep\utils\midi\__init__.py", line 15, in <module>
from MidiOutFile import MidiOutFile
ImportError: No module named 'MidiOutFile'
>>> from opendeep.data import MNIST
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "f:\dd\opendeep\opendeep\__init__.py", line 7, in <module>
from . import version
ImportError: cannot import name 'version'
>>> from opendeep.models import DenoisingAutoencoder
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "f:\dd\opendeep\opendeep\__init__.py", line 7, in <module>
from . import version
ImportError: cannot import name 'version'
>>> from opendeep.optimization import AdaDelta
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "f:\dd\opendeep\opendeep\__init__.py", line 7, in <module>
from . import version
ImportError: cannot import name 'version'
>>>
I found the reason I fixed thx
What was the cause?
marked this as solved