Open links in new tab
  1. Image classification via fine-tuning with EfficientNet - Keras

    Jun 30, 2020 · An implementation of EfficientNet B0 to B7 has been shipped with Keras since v2.3. To use EfficientNetB0 for classifying 1000 classes of images from ImageNet, run:

  2. Timeseries classification with a Transformer model - Keras

    Jun 25, 2021 · You can replace your classification RNN layers with this one: the inputs are fully compatible! We include residual connections, layer normalization, and dropout. The resulting …

  3. EfficientNetV2 B0 to B3 and S, M, L - Keras

    Note: each Keras Application expects a specific kind of input preprocessing. For EfficientNetV2, by default input preprocessing is included as a part of the model (as a Rescaling layer), and …

  4. Image classification from scratch - Keras

    Apr 27, 2020 · This example shows how to do image classification from scratch, starting from JPEG image files on disk, without leveraging pre-trained weights or a pre-made Keras …

  5. EfficientNet B0 to B7 - Keras

    Note: each Keras Application expects a specific kind of input preprocessing. For EfficientNet, input preprocessing is included as part of the model (as a Rescaling layer), and thus …

  6. The Functional API - Keras

    Mar 1, 2019 · Introduction The Keras functional API is a way to create models that are more flexible than the keras.Sequential API. The functional API can handle models with non-linear …

  7. Conv2D layer - Keras

    Note on numerical precision: While in general Keras operation execution results are identical across backends up to 1e-7 precision in float32, Conv2D operations may show larger variations.

  8. Keras documentation: Layer activation functions

    Basically, the SELU activation function multiplies scale (> 1) with the output of the keras.activations.elu function to ensure a slope larger than one for positive inputs.

  9. 3D image classification from CT scans - Keras

    Sep 23, 2020 · # Download url of normal CT scans. url = "https://github.com/hasibzunair/3D-image-classification-tutorial/releases/download/v0.2/CT-0.zip" filename = …

  10. Transfer learning & fine-tuning - Keras

    Apr 15, 2020 · inputs = keras.Input(shape=(150, 150, 3)) # We make sure that the base_model is running in inference mode here, # by passing `training=False`.