We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Training and test data are now loaded at the beginning of model building.
However, it is not time-efficient if the data is very large.
So, if the data used is not changed through staking script, the data should be stored somewhere of base.py.
base.py
STORED_X = pd.DataFrame() def load_data(stored=True): if STORED_X: return STORED_X else: ... if stored: STORED_X = X.copy() return STORED_X else: return X
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Training and test data are now loaded at the beginning of model building.
However, it is not time-efficient if the data is very large.
So, if the data used is not changed through staking script, the data should be stored somewhere of
base.py
.The text was updated successfully, but these errors were encountered: