Skip to content

Commit eb31ab0

Browse files
MarkDaousttf-text-github-robot
authored andcommitted
Fix failing notebooks.
* Don't mix stable and nightly. * Nightly can get confused if you don't uninstall the existing version first. PiperOrigin-RevId: 376208207
1 parent f9bec0f commit eb31ab0

4 files changed

+36
-7
lines changed

docs/guide/tokenizers.ipynb

-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@
9595
},
9696
"outputs": [],
9797
"source": [
98-
"!pip install -q tf-nightly\n",
9998
"!pip install -q tensorflow-text"
10099
]
101100
},

docs/tutorials/classify_text_with_bert.ipynb

-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@
109109
"outputs": [],
110110
"source": [
111111
"# A dependency of the preprocessing for BERT inputs\n",
112-
"!pip install tf-nightly\n",
113112
"!pip install -q -U tensorflow-text"
114113
]
115114
},

docs/tutorials/transformer.ipynb

-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@
112112
},
113113
"outputs": [],
114114
"source": [
115-
"!pip install tf-nightly\n",
116115
"!pip install -q tensorflow_datasets\n",
117116
"!pip install -q -U tensorflow-text"
118117
]

docs/tutorials/uncertainty_quantification_with_sngp_bert.ipynb

+36-4
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,28 @@
9292
"## Setup"
9393
]
9494
},
95+
{
96+
"cell_type": "code",
97+
"execution_count": null,
98+
"metadata": {
99+
"id": "l2dCK-rbYXsb"
100+
},
101+
"outputs": [],
102+
"source": [
103+
"!pip uninstall -y tensorflow tf-text"
104+
]
105+
},
106+
{
107+
"cell_type": "code",
108+
"execution_count": null,
109+
"metadata": {
110+
"id": "MmlftNekWmKR"
111+
},
112+
"outputs": [],
113+
"source": [
114+
"!pip install -U tensorflow-text-nightly"
115+
]
116+
},
95117
{
96118
"cell_type": "code",
97119
"execution_count": null,
@@ -100,7 +122,7 @@
100122
},
101123
"outputs": [],
102124
"source": [
103-
"!pip install -q -U tensorflow-text"
125+
"!pip install -U tf-nightly"
104126
]
105127
},
106128
{
@@ -111,7 +133,7 @@
111133
},
112134
"outputs": [],
113135
"source": [
114-
"!pip install -q tf-models-nightly"
136+
"!pip install -U tf-models-nightly"
115137
]
116138
},
117139
{
@@ -173,7 +195,7 @@
173195
"cell_type": "code",
174196
"execution_count": null,
175197
"metadata": {
176-
"id": "PxcgJHupCC7_"
198+
"id": "ZY_xLQnS-6ar"
177199
},
178200
"outputs": [],
179201
"source": [
@@ -687,7 +709,17 @@
687709
"colab": {
688710
"collapsed_sections": [],
689711
"name": "uncertainty_quantification_with_sngp_bert.ipynb",
690-
"provenance": [],
712+
"private_outputs": true,
713+
"provenance": [
714+
{
715+
"file_id": "1rpzuIuHNW4nnnj5mi1NhV9gjmiRy_QWB",
716+
"timestamp": 1622128463249
717+
},
718+
{
719+
"file_id": "/piper/depot/google3/third_party/tensorflow_text/g3doc/tutorials/uncertainty_quantification_with_sngp_bert.ipynb?workspaceId=markdaoust:no-nightly::citc",
720+
"timestamp": 1622127860630
721+
}
722+
],
691723
"toc_visible": true
692724
},
693725
"kernelspec": {

0 commit comments

Comments
 (0)