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
Under the hood, we know this sample could be used to generate multiple random samples.
classMyStreamingDataset(StreamingDataset):
def__getitem__(self, index, sample_id):
sample=super().__getitem__(index)
# do some transformationreturndata
A use case would be image detection where each image can be used to generate multiple sub boxes and we might want to have them as different training samples.
Pitch
Alternatives
Additional context
The text was updated successfully, but these errors were encountered:
🚀 Feature
Motivation
It would be great to be able to create a batch of sub sample from a given sample. Right now, you can't do that.
However a user could support this.
Under the hood, we know this sample could be used to generate multiple random samples.
A use case would be image detection where each image can be used to generate multiple sub boxes and we might want to have them as different training samples.
Pitch
Alternatives
Additional context
The text was updated successfully, but these errors were encountered: