Mohit Burkule

Results 4 comments of Mohit Burkule

Have the same error here, did you manage to get it running?

You need to pass in arch_config to the TSRegressor ``` from tsai.all import * X, y, splits = get_regression_data('AppliancesEnergy', split_data=False) tfms = [None, TSRegression()] batch_tfms = TSStandardize(by_sample=True) arch_config = dict(dropout=0.0,...

Looking at the internal code , I cant see a direct way of passing dropout to TSForcaster You can , however, add it afterwards ``` from tsai.all import * ts...

P.S, I don't mind creating a pull request to add this feature ( If @oguiza is fine with it)