Skip to content

Commit c07c126

Browse files
Update README.md
1 parent 42ee8c5 commit c07c126

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,14 @@ Follow the instructions below to get started.
3030
3131
### Prerequisites:
3232

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:
3434

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+
4041
### Clone the repository
4142

4243
Open terminal. Navigate to the a place where you want to store the project. Clone the repository:
@@ -45,18 +46,16 @@ git clone https://github.com/arnovanhilten/GenNet
4546
```
4647
### Install the virtual envionment
4748

48-
**Navigate to the home folder and create a virtual environment**
49+
**Create a virtual environment**
4950
```
50-
cd ~
51-
python3 -m venv env_GenNet
51+
conda create -n env_GenNet python=3.10.12
5252
```
5353

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.
5655

5756
**Activate the environment**
5857
```
59-
source ~/env_GenNet/bin/activate
58+
conda activate env_GenNet
6059
```
6160

6261
**Install the packages**

0 commit comments

Comments
 (0)