Datasets:
				
			
			
	
			
			
	
		
		| from datasets import load_dataset | |
| dataset = load_dataset( | |
| "PedroDKE/LibriS2S", | |
| trust_remote_code=True, | |
| streaming=True | |
| ) | |
| for row in dataset["train"]: | |
| print(row["DE_audio"]) | |
| break | 
| from datasets import load_dataset | |
| dataset = load_dataset( | |
| "PedroDKE/LibriS2S", | |
| trust_remote_code=True, | |
| streaming=True | |
| ) | |
| for row in dataset["train"]: | |
| print(row["DE_audio"]) | |
| break |