metadata
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.
Inference code
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"]