minor bug fix
This commit is contained in:
parent
209a7b8ee5
commit
3b0903bd4a
|
@ -480,7 +480,7 @@ class Generator (Learner):
|
||||||
_df = self._df.copy()
|
_df = self._df.copy()
|
||||||
_df[self.columns] = _iodf[self.columns]
|
_df[self.columns] = _iodf[self.columns]
|
||||||
N += _df.shape[0]
|
N += _df.shape[0]
|
||||||
if self._states :
|
if self._states and 'post' in self._states:
|
||||||
_df = State.apply(_df,self._states['post'])
|
_df = State.apply(_df,self._states['post'])
|
||||||
# #
|
# #
|
||||||
# #@TODO:
|
# #@TODO:
|
||||||
|
|
Loading…
Reference in New Issue