About 70 results
Open links in new tab
  1. Transfer learning & fine-tuning | TensorFlow Core

    Apr 12, 2024 · Transfer learning & fine-tuning On this page Setup Introduction Freezing layers: understanding the trainable attribute Recursive setting of the trainable attribute The typical transfer …

  2. Making new layers and models via subclassing - TensorFlow

    Apr 12, 2024 · Besides trainable weights, you can add non-trainable weights to a layer as well. Such weights are meant not to be taken into account during backpropagation, when you are training the layer.

  3. Writing a training loop from scratch - TensorFlow Core

    Jul 24, 2023 · Calling a model inside a GradientTape scope enables you to retrieve the gradients of the trainable weights of the layer with respect to a loss value. Using an optimizer instance, you can use …

  4. tf.compat.v1.trainable_variables | TensorFlow v2.16.1

    tf.compat.v1.trainable_variables( scope=None ) Migrate to TF2 Caution: This API was designed for TensorFlow v1. Continue reading for details on how to migrate from this API to a native TensorFlow …

  5. 転移学習とファインチューニング | TensorFlow Core

    weights: 4 trainable_weights: 2 non_trainable_weights: 2 レイヤーとモデルには、ブール属性の trainable もあり、その値を変更することができます。 layer.trainable を False に設定すると、すべ …

  6. hub.KerasLayer - TensorFlow

    Apr 26, 2024 · hub.KerasLayer( "/tmp/text_embedding_model", output_shape=[20], # Outputs a tensor with shape [batch_size, 20]. input_shape=[], # Expects a tensor of shape [batch_size] as input. …

  7. Transfer learning and fine-tuning - TensorFlow Core

    Aug 16, 2024 · In this tutorial, you will learn how to classify images of cats and dogs by using transfer learning from a pre-trained network. A pre-trained model is a saved network that was previously …

  8. Word embeddings | Text | TensorFlow

    May 27, 2023 · Instead of specifying the values for the embedding manually, they are trainable parameters (weights learned by the model during training, in the same way a model learns weights …

  9. The Sequential model | TensorFlow Core

    Jan 13, 2025 · Here are two common transfer learning blueprint involving Sequential models. First, let's say that you have a Sequential model, and you want to freeze all layers except the last one. In this …

  10. Working with RNNs | TensorFlow Core

    Nov 16, 2023 · Introduction Recurrent neural networks (RNN) are a class of neural networks that is powerful for modeling sequence data such as time series or natural language. Schematically, a RNN …