hey everyone, is there a way to turn off writing f...
# neural-forecast
t
hey everyone, is there a way to turn off writing files when using autonhits, specifically the lightning_logs file?
j
Can you try setting
logger=False
in the constructor? e.g.
NHITS(..., logger=False)
t
__init__() got an unexpected keyword argument 'logger'
This is for the AUTONHITS class
nf = NeuralForecast(
models=[
AutoNHITS(h=24, config=config_nhits, num_samples=5)
],
freq='M'
)
snippet I copied from the documentation, fails with logger=False
j
ah for the auto you need to provide it in the config
so
config={**config_nhits, 'logger': False}
t
oh awesome works like a charm! Thanks @José Morales
👍 1