Datasets:
				
			
			
	
			
	
		
			
	
		
		Unable to access specific languages
Hi,
I'm not able to access data of specific languages.ds = load_dataset("bigcode/the-stack-v2-dedup", data_dir="data/Dockerfile", streaming=True, split="train")  raises FileNotFoundError.
I tried different languages (AL, C++), the same error was raised.
However, accessing the whole dataset works fine without any issues.
For example:ds = load_dataset("bigcode/the-stack-v2-dedup", streaming=True, split="train")
works perfectly.
Any help is appreciated.
+1
I want to mention that this issue still exists for the dedup dataset. However, the original dataset (without dedup) works well.
@tehranixyz
	 can you try with load_dataset("bigcode/the-stack-v2-dedup", "Dockerfile", split="train", streaming=True)? (i.e. using the directory name Dockerfile as the dataset config name)
Thanks for the suggestion. It is working now.

 
						