ppak10 commited on
Commit
cb3b6e3
1 Parent(s): 67d88f9

Updates features to array3d

Browse files
Files changed (1) hide show
  1. nist_lpbf_scan_tracks.py +3 -1
nist_lpbf_scan_tracks.py CHANGED
@@ -125,7 +125,9 @@ class Dataset(datasets.GeneratorBasedBuilder):
125
  # This is the description that will appear on the datasets page.
126
  description=_DESCRIPTION,
127
  # This defines the different columns of the dataset and their types
128
- features = datasets.Features({ "track": datasets.Value("array") }),
 
 
129
  # If there's a common (input, target) tuple from the features, uncomment supervised_keys line below and
130
  # specify them. They'll be used if as_supervised=True in builder.as_dataset.
131
  # supervised_keys=("sentence", "label"),
 
125
  # This is the description that will appear on the datasets page.
126
  description=_DESCRIPTION,
127
  # This defines the different columns of the dataset and their types
128
+ features = datasets.Features({
129
+ "video": datasets.Array3D(),
130
+ }),
131
  # If there's a common (input, target) tuple from the features, uncomment supervised_keys line below and
132
  # specify them. They'll be used if as_supervised=True in builder.as_dataset.
133
  # supervised_keys=("sentence", "label"),