bug fix: volume of data
This commit is contained in:
parent
310d599d06
commit
e27624b697
|
@ -593,7 +593,7 @@ class Predict(GNet):
|
|||
#
|
||||
|
||||
# df = pd.DataFrame(np.round(f)).astype(np.int32)
|
||||
df = pd.DataFrame(np.round(f),dtype=int)
|
||||
df = pd.DataFrame(np.round(f),dtype=np.uint8)
|
||||
|
||||
p = 0 not in df.sum(axis=1).values
|
||||
x = df.sum(axis=1).values
|
||||
|
|
Loading…
Reference in New Issue