ariG23498 HF Staff commited on
Commit
1b4e013
·
verified ·
1 Parent(s): e9f785e

Breaking lines for visibility

Browse files
Files changed (1) hide show
  1. app/src/content/article.mdx +5 -1
app/src/content/article.mdx CHANGED
@@ -62,7 +62,11 @@ from datasets import load_dataset, get_dataset_config_names
62
 
63
  # Get all subset names and load the first one
64
  available_subsets = get_dataset_config_names('HuggingFaceM4/FineVision')
65
- ds = load_dataset('HuggingFaceM4/FineVision', name=available_subsets[0], split='train', streaming=True)
 
 
 
 
66
 
67
  # Inspect the first sample
68
  ds[0]
 
62
 
63
  # Get all subset names and load the first one
64
  available_subsets = get_dataset_config_names('HuggingFaceM4/FineVision')
65
+ ds = load_dataset(
66
+ 'HuggingFaceM4/FineVision',
67
+ name=available_subsets[0],
68
+ split='train', streaming=True,
69
+ )
70
 
71
  # Inspect the first sample
72
  ds[0]