You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TensorLayer is a novel TensorFlow-based deep learning and reinforcement learning library designed for researchers and engineers. It provides an extensive collection of customizable neural layers to build complex AI models. TensorLayer is awarded the 2017 Best Open Source Software by the [ACM Multimedia Society](https://twitter.com/ImperialDSI/status/923928895325442049).
23
+
[TensorLayer](https://tensorlayer.readthedocs.io) is a novel TensorFlow-based deep learning and reinforcement learning library designed for researchers and engineers. It provides an extensive collection of customizable neural layers to build complex AI models. TensorLayer is awarded the 2017 Best Open Source Software by the [ACM Multimedia Society](https://twitter.com/ImperialDSI/status/923928895325442049).
24
24
TensorLayer can also be found at [iHub](https://code.ihub.org.cn/projects/328) and [Gitee](https://gitee.com/organizations/TensorLayer).
25
25
26
26
# News
@@ -158,7 +158,7 @@ We suggest users to report bugs using Github issues. Users can also discuss how
Copy file name to clipboardExpand all lines: docs/user/get_involved.rst
+3-2
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,10 @@ Ph.D. Postition @ PKU
9
9
10
10
11
11
Hi, I am `Hao Dong <https://zsdonghao.github.io/>`__, the founder of this project and a new faculty member in EECS, Peking University. I now have a few Ph.D. positions per year open for international students who would like to study AI. If you or your friends are interested in it, feel free to contact me.
12
-
PKU is a top 30 university in the global ranking. The application is competitive, apply early is recommended. For the application of next year, please note that the DDL of Chinese Government Scholarship is in the end of each year, please check this `link <http://www.isd.pku.edu.cn/info/1503/5676.htm>`__ for more details.
12
+
PKU is a top 30 university in the global ranking. The application is competitive, apply early is recommended. Please check the following links for more details.
13
13
14
-
My homepage: `https://zsdonghao.github.io <https://zsdonghao.github.io/>`__
14
+
- `About the International Elite Ph.D. Program in Computer Science <https://cs.pku.edu.cn/info/1115/2233.htm>`__
Copy file name to clipboardExpand all lines: docs/user/installation.rst
+11-9
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,8 @@ For stable version:
35
35
.. code-block:: bash
36
36
37
37
pip3 install tensorlayer
38
+
39
+
pip install tensorlayer -i https://pypi.tuna.tsinghua.edu.cn/simple (faster in China)
38
40
39
41
For latest version, please install from Github.
40
42
@@ -60,7 +62,7 @@ Alternatively, you can build from the source.
60
62
cd tensorlayer
61
63
62
64
# Install virtualenv if necessary
63
-
pip install virtualenv
65
+
sudo pip3 install virtualenv
64
66
# Then create a virtualenv called `venv`
65
67
virtualenv venv
66
68
@@ -73,29 +75,29 @@ Alternatively, you can build from the source.
73
75
venv\Scripts\activate.bat
74
76
75
77
# basic installation
76
-
pip install .
78
+
pip3 install .
77
79
78
80
# ============= IF TENSORFLOW IS NOT ALREADY INSTALLED ============= #
79
81
80
82
# for a machine **without** an NVIDIA GPU
81
-
pip install -e ".[all_cpu_dev]"
83
+
pip3 install -e ".[all_cpu_dev]"
82
84
83
85
# for a machine **with** an NVIDIA GPU
84
-
pip install -e ".[all_gpu_dev]"
86
+
pip3 install -e ".[all_gpu_dev]"
85
87
86
88
If you want install TensorLayer 1.X, the simplest way to install TensorLayer 1.X is as follow. It will also install the numpy and matplotlib automatically.
87
89
88
90
.. code-block:: bash
89
91
90
-
[stable version] pip install tensorlayer==1.x.x
92
+
[stable version] pip3 install tensorlayer==1.x.x
91
93
92
94
However, if you want to modify or extend TensorLayer 1.X, you can download the repository from
93
95
`Github`_ and install it as follow.
94
96
95
97
.. code-block:: bash
96
98
97
99
cd to the root of the git tree
98
-
pip install -e .
100
+
pip3 install -e .
99
101
100
102
This command will run the ``setup.py`` to install TensorLayer. The ``-e`` reflects
101
103
editable, then you can edit the source code in ``tensorlayer`` folder, and ``import`` the edited
@@ -194,9 +196,9 @@ For TensorLayer, please refer to the steps mentioned above.
194
196
195
197
.. code-block:: bash
196
198
197
-
pip install tensorflow #CPU version
198
-
pip install tensorflow-gpu #GPU version (GPU version and CPU version just choose one)
199
-
pip install tensorlayer #Install tensorlayer
199
+
pip3 install tensorflow #CPU version
200
+
pip3 install tensorflow-gpu #GPU version (GPU version and CPU version just choose one)
0 commit comments