Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/quick_start/local_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

温馨提示:**在搭载Apple M系列芯片的MacBook上必须使用TensorFlow 2.5或更高版本**,安装方法请查看TF官方文档。

Demo实验中使用的环境为 `python=3.6.8` + `tenserflow=1.12.0`
Demo实验中使用的环境为 `python=3.6.8` + `tensorflow=1.12.0`

```bash
conda create -n py36_tf12 python=3.6.8
Expand Down Expand Up @@ -45,7 +45,7 @@ python setup.py install

#### Docker镜像启动

Docker的环境为`python=3.6.9` + `tenserflow=1.15.5`
Docker的环境为`python=3.6.9` + `tensorflow=1.15.5`

##### 方法一:拉取已上传的镜像(推荐)

Expand Down
10 changes: 5 additions & 5 deletions examples/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

## 本地Anaconda安装

Demo实验中使用的环境为 `python=3.6.8` + `tenserflow=1.12.0`
Demo实验中使用的环境为 `python=3.6.8` + `tensorflow=1.12.0`

```bash
conda create -n py36_tf12 python=3.6.8
Expand All @@ -35,13 +35,13 @@ git clone https://github.com/alibaba/EasyRec.git
cd EasyRec

-- Docker环境可选
(1) `python=3.6.9` + `tenserflow=1.15.5`
(1) `python=3.6.9` + `tensorflow=1.15.5`
docker pull mybigpai-public-registry.cn-beijing.cr.aliyuncs.com/easyrec/easyrec:py36-tf1.15-0.8.5
docker run -td --network host -v /local_path/EasyRec:/docker_path/EasyRec mybigpai-public-registry.cn-beijing.cr.aliyuncs.com/easyrec/easyrec:py36-tf1.15-0.8.5
docker exec -it <CONTAINER_ID> bash


(2) `python=3.8.10` + `tenserflow=2.12.0`
(2) `python=3.8.10` + `tensorflow=2.12.0`
docker pull mybigpai-public-registry.cn-beijing.cr.aliyuncs.com/easyrec/easyrec:py38-tf2.12-0.8.5
docker run -td --network host -v /local_path/EasyRec:/docker_path/EasyRec mybigpai-public-registry.cn-beijing.cr.aliyuncs.com/easyrec/easyrec:py38-tf2.12-0.8.5

Expand All @@ -55,11 +55,11 @@ git clone https://github.com/alibaba/EasyRec.git
cd EasyRec

-- Docker环境可选
(1) `python=3.6.9` + `tenserflow=1.15.5`
(1) `python=3.6.9` + `tensorflow=1.15.5`
bash scripts/build_docker_tf115.sh
sudo docker run -td --network host -v /local_path:/docker_path mybigpai-public-registry.cn-beijing.cr.aliyuncs.com/easyrec/easyrec:py36-tf1.15-<easyrec_version>

(2) `python=3.8.10` + `tenserflow=2.12.0`
(2) `python=3.8.10` + `tensorflow=2.12.0`
bash scripts/build_docker_tf212.sh
sudo docker run -td --network host -v /local_path:/docker_path mybigpai-public-registry.cn-beijing.cr.aliyuncs.com/easyrec/easyrec:py38-tf2.12-<easyrec_version>

Expand Down