sayakpaul's picture
sayakpaul HF staff
Create README.md
7f70f47
|
raw
history blame
521 Bytes
---
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"]
```