This commit is contained in:
Steve Nyemba 2022-06-10 14:52:55 -05:00
parent 3087e98bc0
commit 7bf0b8e583
1 changed files with 4 additions and 0 deletions

View File

@ -98,6 +98,10 @@ class Learner(Process):
# - The code below tries to address the issue (Perhaps better suited for the reading components)
_log = {}
for name in columns :
#
# randomly sampling 5 elements to make sense of data-types
if self._df[name].size < 5 :
continue
_index = np.random.choice(np.arange(self._df[name].size),5,False)
no_value = [type(value) in [int,float,np.int64,np.int32,np.float32,np.float64] for value in self._df[name].values[_index]]
no_value = 0 if np.sum(no_value) > 0 else ''