This file contains hidden or 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
from sktime.forecasting.model_selection import temporal_train_test_split, SingleWindowSplitter, ForecastingRandomizedSearchCV | |
from sktime.forecasting.base import ForecastingHorizon | |
from sktime.forecasting.compose import make_reduction, TransformedTargetForecaster | |
from sktime.utils.plotting import plot_series | |
from sktime.performance_metrics.forecasting import mean_absolute_percentage_error | |
from sktime.transformations.series.detrend import Deseasonalizer, Detrender | |
from sktime.forecasting.trend import PolynomialTrendForecaster | |
from xgboost import XGBRegressor |
This file contains hidden or 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
# ---------------------------------------------------------------------------------------------- | |
# HULK - HTTP Unbearable Load King | |
# | |
# this tool is a dos tool that is meant to put heavy load on HTTP servers in order to bring them | |
# to their knees by exhausting the resource pool, its is meant for research purposes only | |
# and any malicious usage of this tool is prohibited. | |
# | |
# author : Barry Shteiman , version 1.0 | |
# ---------------------------------------------------------------------------------------------- | |
import urllib2 |