-
-
Notifications
You must be signed in to change notification settings - Fork 55
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
The current implementation of NESMusicDatabase
does not handle the training-validation-test splits provided in the original dataset. To avoid changing the base Dataset
class too much, we could add a subset
method and achieve something like the following.
nes = muspy.NESMusicDatabase("data/nes/")
training_set = nes.subset("training") # also a Dataset object
validation_set = nes.subset("validation")
test_set = nes.subset("test")
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers