# Tensorflow Hub
Tensorflow Hub contains pre trained models
For example https://tfhub.dev/google/faster_rcnn/openimages_v4/inception_resnet_v2/1
You can click on an copy url button to copy the url for the code
```python
import tensorflow\_hub as hub
module_handle = "https://tfhub.dev/google/faster_rcnn/openimages_v4/inception_resnet_v2/1"
model = hub.load(module_handle)
detector = model.signatures['default']
# load an image tensor from a local file path
img = load_img(path)
# add a batch dimension in front of the tensor
converted_img = tf.image.convert_image_dtype(img, tf.float32)[tf.newaxis, ...]
# run inference using the model
result = detector(converted_img)
```