wellbench / README.md
monteirot's picture
Update README.md
375dfbe verified
|
Raw
History Blame
376 Bytes
metadata
license: mit
task_categories:
  - time-series-forecasting
language:
  - en
size_categories:
  - 1K<n<10K

import mlcroissant as mlc import pandas as pd

ds = mlc.Dataset("croissant.json") df = pd.DataFrame(ds.records(record_set="physics-samples"))

train = df[df.well == "MISSA-KESWAL-01"] val = df[df.well == "MISSA-KESWAL-02"] test = df[df.well == "MISSA-KESWAL-03"]