FluxTextToImagePreprocessor
classkeras_hub.models.FluxTextToImagePreprocessor(
clip_l_preprocessor, t5_preprocessor=None, **kwargs
)
Flux text-to-image model preprocessor.
This preprocessing layer is meant for use with
keras_hub.models.FluxTextToImagePreprocessor
.
For use with generation, the layer exposes one methods
generate_preprocess()
.
Arguments
keras_hub.models.CLIPPreprocessor
instance.keras_hub.models.T5Preprocessor
instance.from_preset
methodFluxTextToImagePreprocessor.from_preset(
preset, config_file="preprocessor.json", **kwargs
)
Instantiate a keras_hub.models.Preprocessor
from a model preset.
A preset is a directory of configs, weights and other file assets used
to save and load a pre-trained model. The preset
can be passed as
one of:
'bert_base_en'
'kaggle://user/bert/keras/bert_base_en'
'hf://user/bert_base_en'
'./bert_base_en'
For any Preprocessor
subclass, you can run cls.presets.keys()
to
list all built-in presets available on the class.
As there are usually multiple preprocessing classes for a given model,
this method should be called on a specific subclass like
keras_hub.models.BertTextClassifierPreprocessor.from_preset()
.
Arguments
Examples
# Load a preprocessor for Gemma generation.
preprocessor = keras_hub.models.CausalLMPreprocessor.from_preset(
"gemma_2b_en",
)
# Load a preprocessor for Bert classification.
preprocessor = keras_hub.models.TextClassifierPreprocessor.from_preset(
"bert_base_en",
)