Instructions to use keras/flan_large_multi with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- KerasHub
How to use keras/flan_large_multi with KerasHub:
import keras_hub # Create a Backbone model unspecialized for any task backbone = keras_hub.models.Backbone.from_preset("hf://keras/flan_large_multi") - Keras
How to use keras/flan_large_multi with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://keras/flan_large_multi") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
library_name: keras-hub
|
| 3 |
license: apache-2.0
|
| 4 |
tags:
|
| 5 |
-
- text-classification
|
| 6 |
- keras
|
|
|
|
| 7 |
---
|
| 8 |
## Model Overview
|
| 9 |
⚠️ T5 is currently only available via the `keras-hub-nightly` package. Use `pip install keras-hub-nightly` to try this model.
|
|
|
|
| 2 |
library_name: keras-hub
|
| 3 |
license: apache-2.0
|
| 4 |
tags:
|
|
|
|
| 5 |
- keras
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
---
|
| 8 |
## Model Overview
|
| 9 |
⚠️ T5 is currently only available via the `keras-hub-nightly` package. Use `pip install keras-hub-nightly` to try this model.
|