The ONNX Runtime package makes it easy to run TensorFlow models in PHP. This short tutorial will show you how. It’s based on this tutorial from tf2onnx. We’ll use SSD Mobilenet, which can detect multiple objects in an image. First, download the pretrained model from the official TensorFlow Models project and this awesome shot of polar bears. Photo from the U.S. Fish and Wildlife Service Install tf2onnx pip install tf2onnx And convert the model to ONNX python -m tf2onnx.convert --opset 10 ...