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
+19-54Lines changed: 19 additions & 54 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ To see what's new and easily filter applications by domain and framework, please
10
10
11
11
For more detailed benchmark information, please visit our [Performance Results page](https://www.graphcore.ai/performance-results).
12
12
13
-
> The code presented here requires using Poplar SDK 3.0.x
13
+
> The code presented here requires using Poplar SDK 3.1.x, and has been tested using Ubuntu 20.04 and Python 3.8
14
14
15
15
Please install and enable the Poplar SDK following the instructions in the [Getting Started](https://docs.graphcore.ai/en/latest/getting-started.html#pod-system-getting-started-guides) guide for your IPU system.
16
16
@@ -39,32 +39,26 @@ If you require POD128/256 setup and configuration for our applications, please c
### <imgwidth="25"src="https://user-images.githubusercontent.com/81682248/177360221-c599b6db-04e7-4e30-8be1-9752085df299.png"></a> Recommender Systems <aname="recommender_systems"></a>
130
-
131
-
| Model | Domain | Type |Links |
132
-
| ------- | ------- |------- | ------- |
133
-
| Deep AutoEncoders for Collaborative Filtering | Recommender Systems | Training & Inference |[TensorFlow 1](recommendation/autoencoder/tensorflow1)|
134
-
| Click through rate: Deep Interest Network | Recommender Systems | Training & Inference |[TensorFlow 1](recommendation/click_through_rate/tensorflow1)|
### <imgwidth="30"src="https://user-images.githubusercontent.com/81682248/177374313-c567fa25-c1a0-450f-855b-ce8b243d087e.png"></a> Probability <aname="probability"></a>
157
-
158
-
| Model | Domain | Type |Links |
159
-
| ------- | ------- |------- | ------- |
160
-
| Contrastive Divergence VAE using MCMC methods | Generative Model | Training |[TensorFlow 1](probability/contrastive_divergence_vae/tensorflow1)|
161
-
| mcmc | Statistics | Training & Inference |[TensorFlow 1](probability/mcmc/tensorflow1/)|
Make sure to source the `enable.sh` script for Poplar as well as the drivers.
27
+
2. Enable the Poplar SDK with:
28
+
```bash
29
+
cd poplar-<OS version>-<SDK version>-<hash>
30
+
. enable.sh
31
+
```
32
+
33
+
More detailed instructions on setting up your environment are available in the [poplar quick start guide](https://docs.graphcore.ai/projects/graphcloud-poplar-quick-start/en/latest/).
50
34
51
-
### 2) Package installation
52
35
53
-
Make sure that the virtualenv package is installed for Python 3.
36
+
## Environment setup
37
+
To prepare your environment, follow these steps:
38
+
39
+
1. Create and activate a Python3 virtual environment:
40
+
```bash
41
+
python3 -m venv <venv name>
42
+
source<venv path>/bin/activate
43
+
```
54
44
55
-
### 3) Prepare the TensorFlow environment
45
+
2. Navigate to the Poplar SDK root directory
56
46
57
-
Activate a Python3 virtual environment with the `tensorflow`
58
-
wheel version 2.4 included in the SDK as follows:
47
+
3. Install the Tensorflow2 and IPU Tensorflow add-ons wheels:
0 commit comments