Skip to content

Commit 3f3e107

Browse files
Conchylicultorcopybara-github
authored andcommitted
Automated documentation update
PiperOrigin-RevId: 282874980
1 parent 935242f commit 3f3e107

File tree

14 files changed

+974
-125
lines changed

14 files changed

+974
-125
lines changed

docs/catalog/billsum.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ summary.
2121
[https://github.com/FiscalNote/BillSum](https://github.com/FiscalNote/BillSum)
2222
* `DatasetBuilder`:
2323
[`tfds.summarization.billsum.Billsum`](https://github.com/tensorflow/datasets/tree/master/tensorflow_datasets/summarization/billsum.py)
24-
* Version: `v1.0.0`
24+
* Version: `v2.0.0`
2525
* Versions:
2626

27-
* **`1.0.0`** (default):
27+
* **`2.0.0`** (default):
2828

29-
* Size: `390.52 MiB`
29+
* Size: `65.79 MiB`
3030

3131
## Features
3232
```python
@@ -41,9 +41,9 @@ FeaturesDict({
4141

4242
Split | Examples
4343
:------ | -------:
44-
ALL | 34,659
45-
TRAIN | 28,408
46-
TEST | 5,014
44+
ALL | 24,116
45+
TRAIN | 19,447
46+
TEST | 3,432
4747
CA_TEST | 1,237
4848

4949
## Homepage

docs/catalog/cars196.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ Model, Year, e.g. 2012 Tesla Model S or 2012 BMW M3 coupe.
2424

2525
* **`2.0.0`** (default):
2626

27-
* Size: `?? GiB`
27+
* Size: `1.82 GiB`
2828

2929
## Features
30-
3130
```python
3231
FeaturesDict({
3332
'bbox': BBoxFeature(shape=(4,), dtype=tf.float32),
@@ -38,7 +37,11 @@ FeaturesDict({
3837

3938
## Statistics
4039

41-
None computed
40+
Split | Examples
41+
:---- | -------:
42+
ALL | 16,185
43+
TRAIN | 8,144
44+
TEST | 8,041
4245

4346
## Homepage
4447

docs/catalog/cnn_dailymail.md

Lines changed: 15 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -25,30 +25,26 @@ each highlight, which is the target summary
2525
`tfds.summarization.cnn_dailymail.CnnDailymailConfig` and has the following
2626
configurations predefined (defaults to the first one):
2727

28-
* `plain_text` (`v0.0.2`) (`Size: 558.32 MiB`): Plain text
28+
* `plain_text` (`v2.0.0`) (`Size: ?? GiB`): Plain text
2929

30-
* `bytes` (`v0.0.2`) (`Size: 558.32 MiB`): Uses byte-level text encoding with
30+
* `bytes` (`v2.0.0`) (`Size: ?? GiB`): Uses byte-level text encoding with
3131
`tfds.features.text.ByteTextEncoder`
3232

33-
* `subwords32k` (`v0.0.2`) (`Size: 558.32 MiB`): Uses
33+
* `subwords32k` (`v2.0.0`) (`Size: ?? GiB`): Uses
3434
`tfds.features.text.SubwordTextEncoder` with 32k vocab size
3535

3636
## `cnn_dailymail/plain_text`
3737
Plain text
3838

3939
Versions:
4040

41-
* **`0.0.2`** (default):
41+
* **`2.0.0`** (default): Separate target sentences with newline.
42+
* `0.0.2`: None
4243
* `1.0.0`: New split API (https://tensorflow.org/datasets/splits)
4344

4445
### Statistics
4546

46-
Split | Examples
47-
:--------- | -------:
48-
ALL | 311,971
49-
TRAIN | 287,113
50-
VALIDATION | 13,368
51-
TEST | 11,490
47+
None computed
5248

5349
### Features
5450
```python
@@ -70,17 +66,13 @@ Uses byte-level text encoding with `tfds.features.text.ByteTextEncoder`
7066

7167
Versions:
7268

73-
* **`0.0.2`** (default):
69+
* **`2.0.0`** (default): Separate target sentences with newline.
70+
* `0.0.2`: None
7471
* `1.0.0`: New split API (https://tensorflow.org/datasets/splits)
7572

7673
### Statistics
7774

78-
Split | Examples
79-
:--------- | -------:
80-
ALL | 311,971
81-
TRAIN | 287,113
82-
VALIDATION | 13,368
83-
TEST | 11,490
75+
None computed
8476

8577
### Features
8678
```python
@@ -102,23 +94,20 @@ Uses `tfds.features.text.SubwordTextEncoder` with 32k vocab size
10294

10395
Versions:
10496

105-
* **`0.0.2`** (default):
97+
* **`2.0.0`** (default): Separate target sentences with newline.
98+
* `0.0.2`: None
10699
* `1.0.0`: New split API (https://tensorflow.org/datasets/splits)
107100

108101
### Statistics
109102

110-
Split | Examples
111-
:--------- | -------:
112-
ALL | 311,971
113-
TRAIN | 287,113
114-
VALIDATION | 13,368
115-
TEST | 11,490
103+
None computed
116104

117105
### Features
106+
118107
```python
119108
FeaturesDict({
120-
'article': Text(shape=(None,), dtype=tf.int64, encoder=<SubwordTextEncoder vocab_size=32915>),
121-
'highlights': Text(shape=(None,), dtype=tf.int64, encoder=<SubwordTextEncoder vocab_size=32915>),
109+
'article': Text(shape=(None,), dtype=tf.int64),
110+
'highlights': Text(shape=(None,), dtype=tf.int64),
122111
})
123112
```
124113

docs/catalog/esnli.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ relations.
2222
`esnli` is configured with `tfds.core.dataset_builder.BuilderConfig` and has the
2323
following configurations predefined (defaults to the first one):
2424

25-
* `plain_text` (`v0.0.2`) (`Size: ?? GiB`): Plain text import of e-SNLI
25+
* `plain_text` (`v0.0.2`) (`Size: 195.04 MiB`): Plain text import of e-SNLI
2626

2727
## `esnli/plain_text`
2828
Plain text import of e-SNLI
@@ -33,10 +33,14 @@ Versions:
3333

3434
### Statistics
3535

36-
None computed
36+
Split | Examples
37+
:--------- | -------:
38+
ALL | 569,033
39+
TRAIN | 549,367
40+
VALIDATION | 9,842
41+
TEST | 9,824
3742

3843
### Features
39-
4044
```python
4145
FeaturesDict({
4246
'explanation_1': Text(shape=(), dtype=tf.string),

0 commit comments

Comments
 (0)