Task
Time Series Forecasting
How To Load from HuggingFace Hub Be sure to have the_well installed (pip install the_well) Use the WellDataModule to retrieve data as follows: from the_well.data import WellDataModule # The following line may take a couple of minutes to instantiate the datamodule datamodule = WellDataModule( "hf://datasets/polymathic-ai/", "shear_flow", ) train_dataloader = datamodule.train_dataloader() for batch in dataloader: # Process training batch ... Periodic… See the full description on the dataset page: https://huggingface.co/datasets/polymathic-ai/shear_flow.
1. Be sure to have thewell installed (pip install thewell) 2. Use the WellDataModule to retrieve data as follows: