Skip to content

Commit 82049c4

Browse files
committed
Update tf-addons 0.19.0.
1 parent 369f0c8 commit 82049c4

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

tutorials/addons/addons-zh.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
```shell
1616
conda create -n tensorflow-macos python=3.10 # 这里Python版本也可以使用Python 3.8和3.9
1717
conda activate tensorflow-macos
18-
conda install -c apple tensorflow-deps==2.10.0
18+
conda install -c apple tensorflow-deps==2.10.0 # 目前Apple没有发布tensorflow-deps 2.11, 但是2.10仍可继续使用
1919
```
2020

2121
2. 安装`tensorFlow-macos``tensorflow-metal`插件.
2222

2323
```shell
24-
pip install tensorflow-macos==2.10.0
25-
pip install tensorflow-metal==0.6.0
24+
pip install tensorflow-macos==2.11.0
25+
pip install tensorflow-metal==0.7.0
2626
```
2727

2828
3. 安装`bazel 4.2.x`.
@@ -35,12 +35,12 @@
3535

3636
* 通常情况下`brew`安装的`bazel`会是最新版的, 最新版往往和`addons`要求的版本不匹配, 这可能会出现很多意想不到的问题, 所以我们通过手动指定版本安装.
3737

38-
4. 下载并解压`addons 0.18.0`.
38+
4. 下载并解压`addons 0.19.0`.
3939

4040
```shell
41-
wget https://github.com/tensorflow/addons/archive/refs/tags/v0.18.0.zip
42-
unzip ./v0.18.0.zip
43-
cd addons-0.18.0
41+
wget https://github.com/tensorflow/addons/archive/refs/tags/0.19.0.zip
42+
unzip ./0.19.0.zip
43+
cd addons-0.19.0
4444
```
4545

4646
5. 运行脚本构建.

tutorials/addons/addons.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ It is assumed here that you have the necessary Unix-Like knowledge, [`brew`](htt
1515
```shell
1616
conda create -n tensorflow-macos python=3.10 # This Python version can also use 3.8 and 3.9
1717
conda activate tensorflow-macos
18-
conda install -c apple tensorflow-deps==2.10.0
18+
conda install -c apple tensorflow-deps==2.10.0 # Currently Apple has not released tensorflow-deps 2.11, but 2.10 can still be used
1919
````
2020

2121
2. Install the `tensorflow-macos` and `tensorflow-metal` plugins.
2222

2323
```shell
24-
pip install tensorflow-macos==2.10.0
25-
pip install tensorflow-metal==0.6.0
24+
pip install tensorflow-macos==2.11.0
25+
pip install tensorflow-metal==0.7.0
2626
````
2727
2828
3. Install `bazel 4.2.x`.
@@ -35,12 +35,12 @@ It is assumed here that you have the necessary Unix-Like knowledge, [`brew`](htt
3535

3636
* Usually, the `bazel` installed by `brew` will be the latest version. The latest version often does not match the version required by `addons`, which may cause many unexpected problems, so we install it by specifying the version manually.
3737

38-
4. Download and extract `addons 0.18.0`.
38+
4. Download and extract `addons 0.19.0`.
3939

4040
```shell
41-
wget https://github.com/tensorflow/addons/archive/refs/tags/v0.18.0.zip
42-
unzip ./v0.18.0.zip
43-
cd addons-0.18.0
41+
wget https://github.com/tensorflow/addons/archive/refs/tags/0.19.0.zip
42+
unzip ./0.19.0.zip
43+
cd addons-0.19.0
4444
````
4545
4646
5. Run the script.

0 commit comments

Comments
 (0)