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
Reorganize pipelines from types to be named pipelines.
Original organization
draco/pipelines ├── classes ├── normalize_dfs_xgb_classifier.json ├── unstack_dfs_xgb_classifier.json ├── unstack_double_lstm_timeseries_classifier.json ├── unstack_lstm_timeseries_classifier.json └── unstack_normalize_dfs_xgb_classifier.json ├── probability ├── normalize_dfs_xgb_classifier.json ├── unstack_dfs_xgb_classifier.json ├── unstack_double_lstm_timeseries_classifier.json ├── unstack_lstm_timeseries_classifier.json └── unstack_normalize_dfs_xgb_classifier.json ├── unstacked ├── unstacked_dfs_xgb_classifier.json ├── unstacked_double_lstm_timeseries_classifier.json ├── unstacked_lstm_timeseries_classifier.json └── unstacked_normalize_dfs_xgb_classifier.json
Proposed organization
draco/pipelines ├── dfs_xgb ├── dfs_xgb.json ├── dfs_xgb_with_unstack.json ├── dfs_xgb_with_double_normalization.json └── dfs_xgb_with_unstack_normalization.json ├── lstm ├── lstm.json └── lstm_with_unstack.json ├── double_lstm ├── double_lstm.json └── double_lstm_with_unstack.json
In addition, for each pipeline, create a documentation page describing the pipeline.
The text was updated successfully, but these errors were encountered:
sarahmish
Successfully merging a pull request may close this issue.
Reorganize pipelines from types to be named pipelines.
Original organization
Proposed organization
In addition, for each pipeline, create a documentation page describing the pipeline.
The text was updated successfully, but these errors were encountered: