File size: 373 Bytes
0b32ad6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import pytest
from dotenv import dotenv_values
from s3prl.dataio.corpus.fluent_speech_commands import FluentSpeechCommands
@pytest.mark.corpus
def test_fluent_commands():
config = dotenv_values()
dataset_root = config["FluentSpeechCommands"]
dataset = FluentSpeechCommands(dataset_root)
dataset.data_split_ids
dataset.data_split
dataset.all_data
|