File tree Expand file tree Collapse file tree 1 file changed +1
-33
lines changed
tensorflow_datasets/datasets/imdb_reviews Expand file tree Collapse file tree 1 file changed +1
-33
lines changed Original file line number Diff line number Diff line change @@ -54,39 +54,7 @@ class Builder(tfds.core.GeneratorBasedBuilder):
54
54
IMDBReviewsConfig (
55
55
name = "plain_text" ,
56
56
description = "Plain text" ,
57
- ),
58
- IMDBReviewsConfig (
59
- name = "bytes" ,
60
- description = (
61
- "Uses byte-level text encoding with "
62
- "`tfds.deprecated.text.ByteTextEncoder`"
63
- ),
64
- text_encoder_config = tfds .deprecated .text .TextEncoderConfig (
65
- encoder = tfds .deprecated .text .ByteTextEncoder ()
66
- ),
67
- ),
68
- IMDBReviewsConfig (
69
- name = "subwords8k" ,
70
- description = (
71
- "Uses `tfds.deprecated.text.SubwordTextEncoder` with 8k "
72
- "vocab size"
73
- ),
74
- text_encoder_config = tfds .deprecated .text .TextEncoderConfig (
75
- encoder_cls = tfds .deprecated .text .SubwordTextEncoder ,
76
- vocab_size = 2 ** 13 ,
77
- ),
78
- ),
79
- IMDBReviewsConfig (
80
- name = "subwords32k" ,
81
- description = (
82
- "Uses `tfds.deprecated.text.SubwordTextEncoder` with "
83
- "32k vocab size"
84
- ),
85
- text_encoder_config = tfds .deprecated .text .TextEncoderConfig (
86
- encoder_cls = tfds .deprecated .text .SubwordTextEncoder ,
87
- vocab_size = 2 ** 15 ,
88
- ),
89
- ),
57
+ )
90
58
]
91
59
92
60
def _info (self ):
You can’t perform that action at this time.
0 commit comments