From 1cf245fa4957ef695a24bea1f443cd048fa27450 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Thu, 4 Jul 2024 18:19:05 +0200 Subject: [PATCH] Update version number --- src/Discretizer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discretizer.h b/src/Discretizer.h index 88db52a..4720664 100644 --- a/src/Discretizer.h +++ b/src/Discretizer.h @@ -29,7 +29,7 @@ namespace mdlp { void fit_t(const torch::Tensor& X_, const torch::Tensor& y_); torch::Tensor transform_t(const torch::Tensor& X_); torch::Tensor fit_transform_t(const torch::Tensor& X_, const torch::Tensor& y_); - static inline std::string version() { return "1.2.3"; }; + static inline std::string version() { return "2.0.0"; }; protected: labels_t discretizedData = labels_t(); cutPoints_t cutPoints; // At least two cutpoints must be provided, the first and the last will be ignored in transform