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
* Set ENV to use fp16 AMX if you are using a supported platform
39
+
```
40
+
export DNNL_MAX_CPU_ISA=AVX512_CORE_AMX_FP16
41
+
```
42
+
43
+
## Datasets
44
+
The dataset can be downloaded and preprocessed by following https://github.com/mlcommons/training/tree/master/recommendation_v2/torchrec_dlrm#create-the-synthetic-multi-hot-dataset.
45
+
We also provided a preprocessed scripts based on the instruction above. `preprocess_raw_dataset.sh`.
46
+
After you loading the raw dataset `day_*.gz` and unzip them to RAW_DIR.
3. Create virtual environment `venv` and activate it:
65
+
```
66
+
python3 -m venv venv
67
+
. ./venv/bin/activate
68
+
```
69
+
4. Install general model requirements
70
+
```
71
+
./setup.sh
72
+
```
73
+
5. Install the latest CPU versions of [torch, torchvision and intel_extension_for_pytorch](https://intel.github.io/intel-extension-for-pytorch/index.html#installation).
0 commit comments