Skip to content

Commit

Permalink
Be consistent about usage4 of "pip install -q" option.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 247984329
  • Loading branch information
MarkDaoust authored and copybara-github committed May 13, 2019
1 parent af345b1 commit 4dc8ddd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion site/en/guide/keras.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
},
"cell_type": "code",
"source": [
"!pip install -q pyyaml # Required to save models in YAML format"
"!pip install pyyaml # Required to save models in YAML format"
],
"execution_count": 0,
"outputs": []
Expand Down
2 changes: 1 addition & 1 deletion site/en/r2/guide/keras/overview.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
},
"cell_type": "code",
"source": [
"!pip install -q pyyaml # pyyaml is optional"
"!pip install pyyaml # pyyaml is optional"
],
"execution_count": 0,
"outputs": []
Expand Down
2 changes: 1 addition & 1 deletion site/en/r2/tutorials/quickstart/advanced.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"source": [
"from __future__ import absolute_import, division, print_function, unicode_literals\n",
"\n",
"!pip install tensorflow-gpu==2.0.0-alpha0\n",
"!pip install tensorflow==2.0.0-alpha0\n",
"import tensorflow as tf\n",
"\n",
"from tensorflow.keras.layers import Dense, Flatten, Conv2D\n",
Expand Down
2 changes: 1 addition & 1 deletion site/ja/guide/keras.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
"colab": {}
},
"source": [
"!pip install -q pyyaml # YAML形式でモデルを保存する際に必要です。"
"!pip install pyyaml # YAML形式でモデルを保存する際に必要です。"
],
"execution_count": 0,
"outputs": []
Expand Down
2 changes: 1 addition & 1 deletion site/ko/alpha/guide/keras/overview.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
},
"outputs": [],
"source": [
"!pip install -q pyyaml # pyyaml은 선택사항입니다."
"!pip install pyyaml # pyyaml은 선택사항입니다."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion site/ru/guide/keras.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
"cell_type": "code",
"source": [
"# Используй pyyaml если будешь сохранять в формате YAML\n",
"!pip install -q pyyaml"
"!pip install pyyaml"
],
"execution_count": 0,
"outputs": []
Expand Down

0 comments on commit 4dc8ddd

Please sign in to comment.