Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
robinthibaut committed Jun 25, 2021
1 parent df8c0d0 commit 8a8e5df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/whpa_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def init_bel():
Y_pre_processing = Pipeline(
[
("scaler", StandardScaler()),
("pca", KernelPCA(n_components=200, kernel="rbf", fit_inverse_transform=True, alpha=1e-5)),
("pca", KernelPCA(n_components=300, kernel="rbf", fit_inverse_transform=True, alpha=1e-5)),
]
)

Expand Down Expand Up @@ -64,7 +64,7 @@ def init_bel():
# %% Set directories
data_dir = jp(os.getcwd(), "dataset")
# Directory in which to unload forecasts
sub_dir = jp(os.getcwd(), "results_rbf2")
sub_dir = jp(os.getcwd(), "results_rbf3")

# Folders
obj_dir = jp(sub_dir, "obj") # Location to save the BEL model
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="skbel",
version="1.1.1",
version="1.1.2",
packages=my_pckg,
include_package_data=True,
url="https://github.com/robinthibaut/skbel",
Expand Down
2 changes: 1 addition & 1 deletion skbel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# from loguru import logger

__version__ = "1.0.2"
__version__ = "1.1.2"

source = __name__.split(".")[-1]
# Set up logger
Expand Down

0 comments on commit 8a8e5df

Please sign in to comment.