--- license: mit task_categories: - other pretty_name: Combined Equation Dataset --- # Combined Equation Dataset (combined_equation) This dataset contains HDF5 files for Burgers equation simulations with forcing. ## Files - for training: v1, v2, v3, v4 - Additional directories: `ood`, ## Usage To load the data: ```python from huggingface_hub import hf_hub_download import h5py # Download a specific file file_path = hf_hub_download( repo_id="sogeeking/combined-equation", filename="CE_train_E4.h5", repo_type="dataset" ) # Load with h5py with h5py.File(file_path, 'r') as f: # Explore the structure print(list(f.keys())) # Load your data data = f['your_key'][:] ``` ## Citation Please cite this dataset if you use it in your research.