* Enable to convert Batch data back to torch. * Add torch converter to collector. * Fix * Move to_numpy/to_torch convert in dedicated utils.py. * Use to_numpy/to_torch to convert arrays. * fix lint * fix * Add unit test to check Batch from/to numpy. * Fix Batch over Batch. Co-authored-by: Alexis Duburcq <alexis.duburcq@wandercraft.eu>
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
import torch
|
|
import numpy as np
|
|
from typing import Union, Optional
|
|
|
|
from tianshou.data import Batch
|
|
|
|
|
|
def to_numpy(x: Union[
|
|
torch.Tensor, dict, Batch, np.ndarray]) -> Union[
|
|
dict, Batch, np.ndarray]:
|
|
"""Return an object without torch.Tensor."""
|
|
if isinstance(x, torch.Tensor):
|
|
x = x.detach().cpu().numpy()
|
|
elif isinstance(x, dict):
|
|
for k, v in x.items():
|
|
x[k] = to_numpy(v)
|
|
elif isinstance(x, Batch):
|
|
x.to_numpy()
|
|
return x
|
|
|
|
|
|
def to_torch(x: Union[torch.Tensor, dict, Batch, np.ndarray],
|
|
dtype: Optional[torch.dtype] = None,
|
|
device: Union[str, int] = 'cpu'
|
|
) -> Union[dict, Batch, torch.Tensor]:
|
|
"""Return an object without np.ndarray."""
|
|
if isinstance(x, np.ndarray):
|
|
x = torch.from_numpy(x).to(device)
|
|
if dtype is not None:
|
|
x = x.type(dtype)
|
|
elif isinstance(x, dict):
|
|
for k, v in x.items():
|
|
x[k] = to_torch(v, dtype, device)
|
|
elif isinstance(x, Batch):
|
|
x.to_torch()
|
|
return x
|