Nico-Curti / NumPyNet

Neural Networks library in pure numpy
https://nico-curti.github.io/NumPyNet
Other
65 stars 6 forks source link

No module named 'parser' error #5

Closed bblais closed 8 months ago

bblais commented 1 year ago

`File ~/Documents/Git/NumPyNet/NumPyNet/NumPyNet/init.py:18 15 from .image_utils import image_utils 16 from .network import Network ---> 18 import parser 19 from . import rnn_utils 20 from .utils import print_statistics

ModuleNotFoundError: No module named 'parser'`

Seems like a simple local-import problem? I'll see if I can solve it myself, but if you happen to fix it before me so much the better. :)

Nico-Curti commented 1 year ago

Hi @bblais, The error should be quickly fixed by changing the line to

from . import parser

We will fix it asap in the next commits ;)

Mat092 commented 12 months ago

Hi @bblais, hi @Nico-Curti

Thanks for the feedback :) commit abd111c should have solved the issue

Kind regards, Mattia