-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I train two or more differnt ForecastDFDataset at the same time? #151
Comments
I also face this issue and my solution is to use ConcatDataset from torch to combine these ForecastDFDataset objects. |
I tried the method you suggested and it seems to work as intended. |
This functionality is built into Other components in our library support the |
Hi @wgifford , it is very helpful features! I will try to fix my codes to handle my data with the arg. Thank you! |
I am working with data that consists of multiple CSV files with the same characteristics for each column but different collection environments. Since combining individual CSV files into a single dataset creates an inappropriate dataset at the merging point, I would like to know how to create ForecastDFDataset objects from multiple individual CSV files and combine them together for training at once. Is there a way to combine the generated ForecastDFDataset objects into one or to put multiple ForecastDFDataset objects into the trainer after model? Such as 'train_datasets' in below
self.trainer = Trainer( model = self.model, args = self.training_args, train_dataset = train_datasets, eval_dataset = eval_dataset, )
The text was updated successfully, but these errors were encountered: