8000 Avoid deprecation warnings on pandas Series.fillna by carlogrisetti · Pull Request #3631 · ludwig-ai/ludwig · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Avoid deprecation warnings on pandas Series.fillna #3631

New issue

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

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
2 changes: 1 addition & 1 deletion ludwig/utils/data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ def add_sequence_feature_column(df, col_name, seq_length):
new_data.append(" ".join(str(j) for j in old_data[i - seq_length : i]))

df[new_col_name] = new_data
df[new_col_name] = df[new_col_name].fillna(method="bfill")
df[new_col_name] = df[new_col_name].bfill()


@DeveloperAPI
Expand Down
0