Closed Mirzoe closed 3 years ago
it could potentially be the file path you are using, try in your model doing this: model_air = TCNModel( input_chunk_length=13, output_chunk_length=12, n_epochs=500, dropout=0.1, dilation_base=2, weight_norm=True, kernel_size=5, num_filters=3, random_state=0, work_dir: 'C:\Users\mzoellner\Desktop\Masterthesis\' )
Thanks for your reply!
I still get the same error with your suggestion.
Its really confusing, because the untrained_models folder is generated in the working directory...
Hi @Mirzoe,
Thanks for reporting this issue!
Probably, the issue is that Windows FS is not supporting the ":" as part of the file/folder names.
In the latest release, we added the current timestamp as part of the models' folders (for parallelization), and those contain some ":". Unfortunately, we haven't tested this new feature in Windows (macOS and Linux don't complain about that). Sorry for that!
I'll test this on Windows and open a PR for fixing this problem asap.
In the meanwhile, you should still be able to train models by downgrading Darts to version 0.8.
Hi @Mirzoe,
Thanks for reporting this issue!
Probably, the issue is that Windows FS is not supporting the ":" as part of the file/folder names.
In the latest release, we added the current timestamp as part of the models' folders (for parallelization), and those contain some ":". Unfortunately, we haven't tested this new feature in Windows (macOS and Linux don't complain about that). Sorry for that!
I'll test this on Windows and open a PR for fixing this problem asap.
In the meanwhile, you should still be able to train models by downgrading Darts to version 0.8.
Thanks for the reply!
With the downgraded version i'm able to train the models :)
And i have another question. Im trying to train my model with multible, multivariate time series. I have 26 features which i transfer over covariates inside the fit function. While putting the features togeter into one TimeSeries class i face the problem that im only can stack 6 features together. Is this right (i mean that im limited with the num of feature)? or im doing something wrong ?
The issue with training on Windows has been solved in v0.9.1 => closing the issue.
@Mirzoe Concerning your other problem with stacking several components into a multivariate TimeSeries: there's no such limitation to the number of components. You should be able to have 26 components in a series without issues, so there's another problem somewhere. If you still have this problem I invite you to open another Issue and post some code snippets there so we can try and reproduce.
Hi.
im not able to fit models in darts. Even when i try the example codes.
Read data:
We'll use the month as a covariate
Create training and validation sets:
Create model:
until her, everything works fine. But when i try to fit the 'model_air' i recieve an error.
fit model:
Error message:
OSError Traceback (most recent call last)