@@ -359,72 +359,6 @@ class YoutubeVis(tfds.core.BeamBasedBuilder):
359
359
),
360
360
only_frames_with_labels = True ,
361
361
),
362
- # BEGIN GOOGLE_INTERNAL
363
- # These splits will be released to third party consumers after internal
364
- # testing.
365
- YoutubeVisConfig (
366
- name = 'full_train_split' ,
367
- description = (
368
- 'The full resolution version of the dataset, with all frames,'
369
- ' including those without labels, included. The val and test'
370
- ' splits are manufactured from the training data.'
371
- ),
372
- # Use the first 1838 train videos for training.
373
- split_train_data_range = (0 , 1838 ),
374
- # Use training videos 1838-2038 for validation.
375
- split_val_data_range = (1838 , 2038 ),
376
- # Use training videos 2038-2238 for testing.
377
- split_test_data_range = (2038 , 2238 ),
378
- ),
379
- YoutubeVisConfig (
380
- name = '480_640_full_train_split' ,
381
- description = (
382
- 'All images are bilinearly resized to 480 X 640 with all '
383
- 'frames included. The val and test splits are '
384
- 'manufactured from the training data.'
385
- ),
386
- height = 480 ,
387
- width = 640 ,
388
- # Use the first 1838 train videos for training.
389
- split_train_data_range = (0 , 1838 ),
390
- # Use training videos 1838-2038 for validation.
391
- split_val_data_range = (1838 , 2038 ),
392
- # Use training videos 2038-2238 for testing.
393
- split_test_data_range = (2038 , 2238 ),
394
- ),
395
- YoutubeVisConfig (
396
- name = '480_640_only_frames_with_labels_train_split' ,
397
- description = (
398
- 'All images are bilinearly resized to 480 X 640 with only'
399
- ' frames with labels included. The val and test splits '
400
- 'are manufactured from the training data.'
401
- ),
402
- height = 480 ,
403
- width = 640 ,
404
- only_frames_with_labels = True ,
405
- # Use the first 1838 train videos for training.
406
- split_train_data_range = (0 , 1838 ),
407
- # Use training videos 1838-2038 for validation.
408
- split_val_data_range = (1838 , 2038 ),
409
- # Use training videos 2038-2238 for testing.
410
- split_test_data_range = (2038 , 2238 ),
411
- ),
412
- YoutubeVisConfig (
413
- name = 'only_frames_with_labels_train_split' ,
414
- description = (
415
- 'Only images with labels included at their native '
416
- 'resolution. The val and test splits are manufactured '
417
- 'from the training data.'
418
- ),
419
- only_frames_with_labels = True ,
420
- # Use the first 1838 train videos for training.
421
- split_train_data_range = (0 , 1838 ),
422
- # Use training videos 1838-2038 for validation.
423
- split_val_data_range = (1838 , 2038 ),
424
- # Use training videos 2038-2238 for testing.
425
- split_test_data_range = (2038 , 2238 ),
426
- ),
427
- # END GOOGLE_INTERNAL
428
362
]
429
363
VERSION = tfds .core .Version ('1.0.0' )
430
364
RELEASE_NOTES = {
0 commit comments