File size: 521 Bytes
7f70f47 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
---
license: cc
tags:
- tensorflow
- image-to-image
---
# Whitebox Cartoonizer
Whitebox Cartoonizer [1] model in the `SavedModel` format. The model was exported to the SavedModel format using this notebook. Original model repository can be found [here](https://github.com/SystemErrorWang/White-box-Cartoonization).
## Inference code
```py
from huggingface_hub import hf_hub_download
import tensorflow as tf
root = tf.saved_model.load("/content/saved_model_dir")
concrete_func = root.signatures["serving_default"]
``` |