scikit-hts icon indicating copy to clipboard operation
scikit-hts copied to clipboard

[DOCS] Documentation

Open pst2154 opened this issue 3 years ago • 0 comments

In the API Reference, you are missing a parentheses

`from collections import namedtuple

Transform = namedtuple('Transform', ['func', 'inv_func'] transform = Transform(func=numpy.exp, inv_func=numpy.log)

ht = HTSRegressor(transform=transform, ...)`

should be

`from collections import namedtuple

Transform = namedtuple('Transform', ['func', 'inv_func']) transform = Transform(func=numpy.exp, inv_func=numpy.log)

ht = HTSRegressor(transform=transform, ...)`

pst2154 avatar Dec 03 '21 18:12 pst2154