jcamier commited on
Commit
90c8095
·
verified ·
1 Parent(s): 73e56c8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -0
README.md CHANGED
@@ -75,6 +75,10 @@ label_url = f"{base_url}train_labels_tensor.pt"
75
  tensors = torch.load(BytesIO(requests.get(tensor_url).content))
76
  labels = torch.load(BytesIO(requests.get(label_url).content))
77
 
 
 
 
 
78
  ```
79
 
80
  Enjoy!
 
75
  tensors = torch.load(BytesIO(requests.get(tensor_url).content))
76
  labels = torch.load(BytesIO(requests.get(label_url).content))
77
 
78
+ # Verify the data is loaded correctly
79
+ print(tensors.shape)
80
+ print(labels.shape)
81
+
82
  ```
83
 
84
  Enjoy!