The default pretrained model weights are from [The 1st Place Solution of ISC21 (Descriptor Track)](https://github.com/lyakaap/ISC21-Descriptor-Track-1st).
<br/>
## Code Example
Load an image from path './towhee.jpg'
and use the pretrained ISC model ('resnet50') to generate an image embedding.
*Write the pipeline in simplified style:*
```python
import towhee
towhee.glob('./towhee.jpg') \
.image_decode() \
.image_embedding.isc() \
.show()
```
<imgsrc="./result1.png"height="50px"/>
*Write a same pipeline with explicit inputs/outputs name specifications:*
```python
import towhee
towhee.glob['path']('./towhee.jpg') \
.image_decode['path', 'img']() \
.image_embedding.isc['img', 'vec']() \
.select['img', 'vec']() \
.show()
```
<imgsrc="./result2.png"height="150px"/>
<br/>
## Factory Constructor
Create the operator via the following factory method