Food101 Tensorflow Dataset Requested split "validation" does not exist

I’m trying to learn AI from this link https://github.com/mrdbourke/tensorflow-deep-learning/blob/main/07_food_vision_milestone_project_1.ipynb
When I try to use this code it can’t detect validation so I tried test but that didn’t work either

(train_data, test_data), ds_info = tfds.load(name="food101",
                                             split=["train", "validation"],
                                             shuffle_files=True,
                                             as_supervised=True,
                                             with_info=True)`

Hi @DarkestDay, I have tried to load the dataset and I can see there are 75750 samples in train_data and 25250 samples in test_data. please refer to this gist. Thank You.