itdxer / neupy

NeuPy is a Tensorflow based python library for prototyping and building neural networks
http://neupy.com
MIT License
741 stars 160 forks source link

module 'neupy.utils' has no attribute 'reproducible' #273

Closed MohamedZaid95 closed 3 years ago

MohamedZaid95 commented 3 years ago

Hi I'm getting this error, any advice on how to fix it?


AttributeError Traceback (most recent call last)

in 6 from neupy import algorithms, utils 7 ----> 8 utils.reproducible() 9 10 gng = algorithms.GrowingNeuralGas( AttributeError: module 'neupy.utils' has no attribute 'reproducible'
itdxer commented 3 years ago

Can you try to import it with one of the following commands?

from neupy.utils import reproducible

or

from neupy.utils.misc import reproducible
MohamedZaid95 commented 3 years ago

Great! For me worked from neupy.utils.misc import reproducible Thank you!