You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Confirm order in slices of datasets matches original order of unsliced datasets. Ordering issue noted in UCF101 test dataset--may only apply to larger datasets.
The text was updated successfully, but these errors were encountered:
For the UCF101 scenario, if we run a scenario on the MARS model with "eval_split": "test[[332,333]]" we do not get a shape warning, however if we run a scenario with the full test split, then the 333rd example does give a warning.
The slice operator in TFDS does not guarantee ordering between different types of splits, only that the same split is repeatable. Generally, it's meant as an easy way to break things into large test/validate/train sets.
The primary other operator that we could use is tf.data.datasets.split(), but this still requires full processing, so it's probably better to handle it in our data generator logic. tensorflow/tensorflow#44008 (comment)
Confirm order in slices of datasets matches original order of unsliced datasets. Ordering issue noted in UCF101 test dataset--may only apply to larger datasets.
The text was updated successfully, but these errors were encountered: