|
import pickle |
|
import datasets |
|
import numpy as np |
|
|
|
_DESCRIPTION = """\ |
|
A subset of the D4RL dataset, used for training Decision Transformers |
|
""" |
|
|
|
|
|
|
|
|
|
_BASE_URL = "https://huggingface.co/datasets/TobiTob/CityLearn/resolve/main" |
|
_URLS = { |
|
"s1_test": f"{_BASE_URL}/s1_test.pkl", |
|
"test": f"{_BASE_URL}/test.pkl", |
|
} |
|
|
|
|
|
class DecisionTransformerCityLearnDataset(datasets.GeneratorBasedBuilder): |
|
"""The dataset comprises of tuples of (Observations, Actions, Rewards, Dones) sampled |
|
by an expert policy for various continuous control tasks (halfcheetah, hopper, walker2d)""" |
|
|
|
VERSION = datasets.Version("1.1.0") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BUILDER_CONFIGS = [ |
|
datasets.BuilderConfig( |
|
name="s1_test", |
|
version=VERSION, |
|
description="Test Data sampled from an expert policy in CityLearn environment", |
|
), |
|
datasets.BuilderConfig( |
|
name="test", |
|
version=VERSION, |
|
description="Test Data sampled from an expert policy in CityLearn environment", |
|
), |
|
] |
|
|
|
def _info(self): |
|
|
|
features = datasets.Features( |
|
{ |
|
"observations": datasets.Sequence(datasets.Sequence(datasets.Value("float32"))), |
|
"actions": datasets.Sequence(datasets.Sequence(datasets.Value("float32"))), |
|
"rewards": datasets.Sequence(datasets.Value("float32")), |
|
"dones": datasets.Sequence(datasets.Value("bool")), |
|
|
|
} |
|
) |
|
|
|
return datasets.DatasetInfo( |
|
|
|
description=_DESCRIPTION, |
|
|
|
|
|
features=features, |
|
|
|
|
|
|
|
|
|
homepage=_HOMEPAGE, |
|
|
|
license=_LICENSE, |
|
) |
|
|
|
def _split_generators(self, dl_manager): |
|
urls = _URLS[self.config.name] |
|
data_dir = dl_manager.download_and_extract(urls) |
|
return [ |
|
datasets.SplitGenerator( |
|
name=datasets.Split.TRAIN, |
|
|
|
gen_kwargs={ |
|
"filepath": data_dir, |
|
"split": "train", |
|
}, |
|
) |
|
] |
|
|
|
|
|
def _generate_examples(self, filepath, split): |
|
with open(filepath, "rb") as f: |
|
trajectories = pickle.load(f) |
|
|
|
print(trajectories) |
|
print(type(trajectories)) |
|
|
|
|
|
for idx, traj in enumerate(trajectories): |
|
yield idx, { |
|
"observations": traj["observations"], |
|
"actions": traj["actions"], |
|
"rewards": np.expand_dims(traj["rewards"], axis=1), |
|
"dones": np.expand_dims(traj.get("dones", traj.get("terminals")), axis=1), |
|
} |
|
|