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
Copy file name to clipboardExpand all lines: README.md
+11-12Lines changed: 11 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,13 +30,14 @@ Follow the instructions below to get started.
30
30
31
31
### Prerequisites:
32
32
33
-
- GenNet can use CPU or GPU (which can be quite a bit faster for deeper networks) If you want to use cuda, please make sure you have the correct version of CUDA installed [CUDA](https://developer.nvidia.com/cuda-10.1-download-archive-base). GenNet has been tested for:
33
+
- GenNet is optimized to use Tensorflow on CPU using multiple-cores as sparse matrix multiplcations does not benefit from GPU acceleration. We are currently restricting testing and recommending using:
34
34
35
-
* Python 3.5, CUDA 9.1, Tensorflow 1.12.0
36
-
* Python 3.5, CUDA 10.0, Tensorflow 1.13.1
37
-
* Python 3.5, CUDA 10.0, Tensorflow 2.0.0-beta1
38
-
* Python 3.6-3.7, CUDA 10.1, Tensorflow 2.2.0 (currently default and recommended)
39
-
* Python 3.* Tensorflow 2.2 to 2.5 CPU
35
+
* Python 3.10, Tensorflow 2.2
36
+
37
+
- Other versions of tensorflow and python may work but could have dependency conflicts.
38
+
39
+
40
+
40
41
### Clone the repository
41
42
42
43
Open terminal. Navigate to the a place where you want to store the project. Clone the repository:
**Navigate to the home folder and create a virtual environment**
49
+
**Create a virtual environment**
49
50
```
50
-
cd ~
51
-
python3 -m venv env_GenNet
51
+
conda create -n env_GenNet python=3.10.12
52
52
```
53
53
54
-
This automatically installs the latest Tensorflow version for which GenNet has been tested. If you have an older version of CUDA install the appriopriate tensorflow-gpu by
55
-
`pip install tensorflow-gpu==1.13.1` (change 1.13.1 to your version).
54
+
This automatically installs the latest Tensorflow version for which GenNet has been tested.
0 commit comments