Support for discrete actions (#810)
This commit is contained in:
parent
0b8205a8a0
commit
10706ed753
|
@ -234,7 +234,7 @@ def get_episode_data(dataset: LeRobotDataset | IterableNamespace, episode_index)
|
||||||
This file will be loaded by Dygraph javascript to plot data in real time."""
|
This file will be loaded by Dygraph javascript to plot data in real time."""
|
||||||
columns = []
|
columns = []
|
||||||
|
|
||||||
selected_columns = [col for col, ft in dataset.features.items() if ft["dtype"] == "float32"]
|
selected_columns = [col for col, ft in dataset.features.items() if ft["dtype"] in ["float32", "int32"]]
|
||||||
selected_columns.remove("timestamp")
|
selected_columns.remove("timestamp")
|
||||||
|
|
||||||
ignored_columns = []
|
ignored_columns = []
|
||||||
|
|
Loading…
Reference in New Issue