Remove unneeded ;

This commit is contained in:
2024-11-20 20:07:09 +01:00
parent ea70535984
commit 7d62d6af4a

View File

@@ -30,7 +30,7 @@ namespace mdlp {
void fit_t(const torch::Tensor& X_, const torch::Tensor& y_); void fit_t(const torch::Tensor& X_, const torch::Tensor& y_);
torch::Tensor transform_t(const torch::Tensor& X_); torch::Tensor transform_t(const torch::Tensor& X_);
torch::Tensor fit_transform_t(const torch::Tensor& X_, const torch::Tensor& y_); torch::Tensor fit_transform_t(const torch::Tensor& X_, const torch::Tensor& y_);
static inline std::string version() { return { project_mdlp_version.begin(), project_mdlp_version.end() };; }; static inline std::string version() { return { project_mdlp_version.begin(), project_mdlp_version.end() }; };
protected: protected:
labels_t discretizedData = labels_t(); 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 cutPoints_t cutPoints; // At least two cutpoints must be provided, the first and the last will be ignored in transform