Skip to content

Commit 9d07ab3

Browse files
small fix
1 parent 068ef00 commit 9d07ab3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

API_REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,4 +189,4 @@ The index of the term selected. So ***0*** is the first term, ***1*** is the sec
189189

190190
## Method: get_validation_indexes()
191191

192-
***Returns a numpy vector containing the indexes of the training data observations used for validation and not training.***
192+
***Returns a list of integers containing the indexes of the training data observations used for validation and not training.***

aplr/aplr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def get_m(self)->int:
9494
def get_validation_group_mse(self)->float:
9595
return self.APLRRegressor.get_validation_group_mse()
9696

97-
def get_validation_indexes(self)->npt.ArrayLike:
97+
def get_validation_indexes(self)->List[int]:
9898
return self.APLRRegressor.get_validation_indexes()
9999

100100
#For sklearn

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setuptools.setup(
1717
name='aplr',
18-
version='1.12.0',
18+
version='1.12.1',
1919
description='Automatic Piecewise Linear Regression',
2020
ext_modules=[sfc_module],
2121
author="Mathias von Ottenbreit",

0 commit comments

Comments
 (0)