-
Notifications
You must be signed in to change notification settings - Fork 39
Description
When I try to run the program I get following error:
ValueError Traceback (most recent call last)
in
2 import tensorflow as tf
3
----> 4 from deepswarm.backends import Dataset, TFKerasBackend
5 from deepswarm.deepswarm import DeepSwarm
6
~\AppData\Local\Programs\Python\Python38\Scripts\DeepSwarm-master\deepswarm\backends.py in
7
8 from abc import ABC, abstractmethod
----> 9 from sklearn.model_selection import train_test_split
10 from tensorflow.keras import backend as K
11
c:\users\user\appdata\local\programs\python\python38\lib\site-packages\sklearn_init_.py in
62 else:
63 from . import __check_build
---> 64 from .base import clone
65 from .utils._show_versions import show_versions
66
c:\users\user\appdata\local\programs\python\python38\lib\site-packages\sklearn\base.py in
12 from scipy import sparse
13 from .externals import six
---> 14 from .utils.fixes import signature
15 from .utils import _IS_32BIT
16 from . import version
c:\users\user\appdata\local\programs\python\python38\lib\site-packages\sklearn\utils_init_.py in
10 from scipy.sparse import issparse
11
---> 12 from .murmurhash import murmurhash3_32
13 from .class_weight import compute_class_weight, compute_sample_weight
14 from . import _joblib
init.pxd in init sklearn.utils.murmurhash()
ValueError: numpy.ndarray size changed, may indicate binary incompatibility. Expected 88 from C header, got 80 from PyObject
I use:
python 3.8
numpy 1.20.1
I would appreciate your help.