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
Hi,
I have an error when I try to fit main.AnomalyDetection()
TypeError: ts_train_test_split() got an unexpected keyword argument 'shuffle'
Problem is here: def ts_train_test_split(df, len_seq, points_ahead=1, gap=0, shag=1, intersection=True, test_size=None,train_size=None, random_state=None, what_to_shuffle='train')
X_train, X_test, y_train, y_test = src.ts_train_test_split(df=new_df, len_seq=len_seq, points_ahead=points_ahead, gap=gap, shag=shag, intersection=intersection, test_size=test_size, train_size=train_size, random_state=random_state, shuffle=False, stratify=stratify)
shuffle and stratify argument don't exist for the function 'ts_train_test_split'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I have an error when I try to fit main.AnomalyDetection()
TypeError: ts_train_test_split() got an unexpected keyword argument 'shuffle'
Problem is here:
def ts_train_test_split(df, len_seq,
points_ahead=1, gap=0, shag=1, intersection=True,
test_size=None,train_size=None, random_state=None, what_to_shuffle='train')
X_train, X_test, y_train, y_test = src.ts_train_test_split(df=new_df,
len_seq=len_seq,
points_ahead=points_ahead,
gap=gap,
shag=shag,
intersection=intersection,
test_size=test_size,
train_size=train_size,
random_state=random_state,
shuffle=False,
stratify=stratify)
shuffle and stratify argument don't exist for the function 'ts_train_test_split'
The text was updated successfully, but these errors were encountered: