View lstm_synthetic_data.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View sklearn_pipe.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View berkeley_earth_temp_prophet.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View berkeley_earth_temp_data.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View airbnb_nyc_kaggle.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View berkeley_earth_temp_data.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View colab_auto_sklearn_profiler.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View google_100_carbon_free.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View sklearn_pipe.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# train_dataset: pd.DataFrame | |
# Columns | |
# numerical_features = ["close_percent_bb", "macd_diff", "force_index"] , | |
# type: float | |
# categorical_features = ["previous_day_flag"] | |
# type: str | |
# value from set {"up", "down", "flat"} | |
# Example: | |
# >>train_dataset.loc[:, numerical_features + categorical_features + ["label"]].head(5) | |
# percent_bb macd_diff force_index previous_day_flag label |