@@ -4,6 +4,7 @@ We recommend **Python 3.9+**, **[PyTorch 1.11.0+](https://pytorch.org/get-starte
44* ** Default:** This allows for loading, saving, and inference (i.e., getting embeddings) of models.
55* ** ONNX:** This allows for loading, saving, inference, optimizing, and quantizing of models using the ONNX backend.
66* ** OpenVINO:** This allows for loading, saving, and inference of models using the OpenVINO backend.
7+ * ** IPEX:** This allows for loading, saving, and inference of models using the IPEX backend.
78* ** Default and Training** : Like ** Default** , plus training.
89* ** Development** : All of the above plus some dependencies for developing Sentence Transformers, see [ Editable Install] ( #editable-install ) .
910
@@ -37,6 +38,12 @@ Note that you can mix and match the various extras, e.g. ``pip install -U "sente
3738
3839 pip install -U "sentence-transformers[openvino]"
3940
41+ .. tab:: IPEX
42+
43+ ::
44+
45+ pip install -U "sentence-transformers[ipex]"
46+
4047.. tab:: Default and Training
4148
4249 ::
@@ -87,6 +94,12 @@ Note that you can mix and match the various extras, e.g. ``pip install -U "sente
8794
8895 pip install -U "sentence-transformers[openvino]"
8996
97+ .. tab:: IPEX
98+
99+ ::
100+
101+ pip install -U "sentence-transformers[ipex]"
102+
90103.. tab:: Default and Training
91104
92105 ::
@@ -139,6 +152,12 @@ You can install ``sentence-transformers`` directly from source to take advantage
139152
140153 pip install -U "sentence-transformers[openvino] @ git+https://github.com/UKPLab/sentence-transformers.git"
141154
155+ .. tab:: IPEX
156+
157+ ::
158+
159+ pip install -U "sentence-transformers[ipex] @ git+https://github.com/UKPLab/sentence-transformers.git"
160+
142161.. tab:: Default and Training
143162
144163 ::
0 commit comments