-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work in progress on vectorized dataset
- preliminary support for vectorized dataset - episode infos are not supported yet unfortunately - major refactoring of DataCoverter, now it's ArrayBackend - still some issues in the vectorized dataset conversion to serial dataset, needs to be fixed - fixed some issues of tensor features not using proper device - fixed issue in test for vectorized environments
- Loading branch information
1 parent
42872ec
commit a5dfa3a
Showing
15 changed files
with
187 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from .numpy_dataset import NumpyDataset | ||
from .torch_dataset import TorchDataset | ||
from .list_dataset import ListDataset | ||
from .type_conversions import DataConversion, NumpyConversion, TorchConversion, ListConversion | ||
from .array_backend import ArrayBackend, NumpyBackend, TorchBackend, ListBackend | ||
from .core_logic import CoreLogic | ||
from .vectorized_core_logic import VectorizedCoreLogic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.