Using the example from Getting Started:
>>> from tynt import FilterGenerator
>>> f = FilterGenerator()
>>> identifier = 'SLOAN/SDSS.rprime_filter'
>>> filt = f.reconstruct(identifier, model=True)
>>> filt.model(6000) # BUG: Returns NaN
.../tynt/core.py:97: RuntimeWarning: invalid value encountered in true_divide
return (mo - mo.min()) * tr_max / mo.ptp()
nan
>>> filt.model([6000, 6001]) # Works
array([0.97632599, 0. ])