Instructions to use keras/vgg_11_imagenet with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- KerasHub
How to use keras/vgg_11_imagenet with KerasHub:
import keras_hub import keras # Load ImageClassifier model image_classifier = keras_hub.models.ImageClassifier.from_preset( "hf://keras/vgg_11_imagenet", num_classes=2, ) # Fine-tune image_classifier.fit( x=keras.random.randint((32, 64, 64, 3), 0, 256), y=keras.random.randint((32, 1), 0, 2), ) # Classify image image_classifier.predict(keras.random.randint((1, 64, 64, 3), 0, 256))import keras_hub # Create a Backbone model unspecialized for any task backbone = keras_hub.models.Backbone.from_preset("hf://keras/vgg_11_imagenet") - Keras
How to use keras/vgg_11_imagenet 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/vgg_11_imagenet") - Notebooks
- Google Colab
- Kaggle
- Xet hash:
- e200c5230a15a770caecea483d5ce13a5fd9377c2199949e744a8f2a77710859
- Size of remote file:
- 532 MB
- SHA256:
- f04e7bdb06c94e73528470a1d94099f1a3ba3a3e377a73d8e366b33714cab2df
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.