CINXE.COM
Developer guides
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="Keras documentation"> <meta name="author" content="Keras Team"> <link rel="shortcut icon" href="https://keras.io/img/favicon.ico"> <link rel="canonical" href="https://keras.io/guides/" /> <!-- Social --> <meta property="og:title" content="Keras documentation: Developer guides"> <meta property="og:image" content="https://keras.io/img/logo-k-keras-wb.png"> <meta name="twitter:title" content="Keras documentation: Developer guides"> <meta name="twitter:image" content="https://keras.io/img/k-keras-social.png"> <meta name="twitter:card" content="summary"> <title>Developer guides</title> <!-- Bootstrap core CSS --> <link href="/css/bootstrap.min.css" rel="stylesheet"> <!-- Custom fonts for this template --> <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap" rel="stylesheet"> <!-- Custom styles for this template --> <link href="/css/docs.css" rel="stylesheet"> <link href="/css/monokai.css" rel="stylesheet"> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-5DNGF4N'); </script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-175165319-128', 'auto'); ga('send', 'pageview'); </script> <!-- End Google Tag Manager --> <script async defer src="https://buttons.github.io/buttons.js"></script> </head> <body> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5DNGF4N" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div class='k-page'> <div class="k-nav" id="nav-menu"> <a href='/'><img src='/img/logo-small.png' class='logo-small' /></a> <div class="nav flex-column nav-pills" role="tablist" aria-orientation="vertical"> <a class="nav-link" href="/about/" role="tab" aria-selected="">About Keras</a> <a class="nav-link" href="/getting_started/" role="tab" aria-selected="">Getting started</a> <a class="nav-link active" href="/guides/" role="tab" aria-selected="">Developer guides</a> <a class="nav-sublink" href="/guides/functional_api/">The Functional API</a> <a class="nav-sublink" href="/guides/sequential_model/">The Sequential model</a> <a class="nav-sublink" href="/guides/making_new_layers_and_models_via_subclassing/">Making new layers & models via subclassing</a> <a class="nav-sublink" href="/guides/training_with_built_in_methods/">Training & evaluation with the built-in methods</a> <a class="nav-sublink" href="/guides/custom_train_step_in_jax/">Customizing `fit()` with JAX</a> <a class="nav-sublink" href="/guides/custom_train_step_in_tensorflow/">Customizing `fit()` with TensorFlow</a> <a class="nav-sublink" href="/guides/custom_train_step_in_torch/">Customizing `fit()` with PyTorch</a> <a class="nav-sublink" href="/guides/writing_a_custom_training_loop_in_jax/">Writing a custom training loop in JAX</a> <a class="nav-sublink" href="/guides/writing_a_custom_training_loop_in_tensorflow/">Writing a custom training loop in TensorFlow</a> <a class="nav-sublink" href="/guides/writing_a_custom_training_loop_in_torch/">Writing a custom training loop in PyTorch</a> <a class="nav-sublink" href="/guides/serialization_and_saving/">Serialization & saving</a> <a class="nav-sublink" href="/guides/customizing_saving_and_serialization/">Customizing saving & serialization</a> <a class="nav-sublink" href="/guides/writing_your_own_callbacks/">Writing your own callbacks</a> <a class="nav-sublink" href="/guides/transfer_learning/">Transfer learning & fine-tuning</a> <a class="nav-sublink" href="/guides/distributed_training_with_jax/">Distributed training with JAX</a> <a class="nav-sublink" href="/guides/distributed_training_with_tensorflow/">Distributed training with TensorFlow</a> <a class="nav-sublink" href="/guides/distributed_training_with_torch/">Distributed training with PyTorch</a> <a class="nav-sublink" href="/guides/distribution/">Distributed training with Keras 3</a> <a class="nav-sublink" href="/guides/migrating_to_keras_3/">Migrating Keras 2 code to Keras 3</a> <a class="nav-sublink" href="/guides/keras_tuner/">Hyperparameter Tuning</a> <a class="nav-sublink" href="/guides/keras_cv/">KerasCV</a> <a class="nav-sublink" href="/guides/keras_nlp/">KerasNLP</a> <a class="nav-sublink" href="/guides/keras_hub/">KerasHub</a> <a class="nav-link" href="/api/" role="tab" aria-selected="">Keras 3 API documentation</a> <a class="nav-link" href="/2.18/api/" role="tab" aria-selected="">Keras 2 API documentation</a> <a class="nav-link" href="/examples/" role="tab" aria-selected="">Code examples</a> <a class="nav-link" href="/keras_tuner/" role="tab" aria-selected="">KerasTuner: Hyperparameter Tuning</a> <a class="nav-link" href="/keras_hub/" role="tab" aria-selected="">KerasHub: Pretrained Models</a> <a class="nav-link" href="/keras_cv/" role="tab" aria-selected="">KerasCV: Computer Vision Workflows</a> <a class="nav-link" href="/keras_nlp/" role="tab" aria-selected="">KerasNLP: Natural Language Workflows</a> </div> </div> <div class='k-main'> <div class='k-main-top'> <script> function displayDropdownMenu() { e = document.getElementById("nav-menu"); if (e.style.display == "block") { e.style.display = "none"; } else { e.style.display = "block"; document.getElementById("dropdown-nav").style.display = "block"; } } function resetMobileUI() { if (window.innerWidth <= 840) { document.getElementById("nav-menu").style.display = "none"; document.getElementById("dropdown-nav").style.display = "block"; } else { document.getElementById("nav-menu").style.display = "block"; document.getElementById("dropdown-nav").style.display = "none"; } var navmenu = document.getElementById("nav-menu"); var menuheight = navmenu.clientHeight; var kmain = document.getElementById("k-main-id"); kmain.style.minHeight = (menuheight + 100) + 'px'; } window.onresize = resetMobileUI; window.addEventListener("load", (event) => { resetMobileUI() }); </script> <div id='dropdown-nav' onclick="displayDropdownMenu();"> <svg viewBox="-20 -20 120 120" width="60" height="60"> <rect width="100" height="20"></rect> <rect y="30" width="100" height="20"></rect> <rect y="60" width="100" height="20"></rect> </svg> </div> <form class="bd-search d-flex align-items-center k-search-form" id="search-form"> <input type="search" class="k-search-input" id="search-input" placeholder="Search Keras documentation..." aria-label="Search Keras documentation..." autocomplete="off"> <button class="k-search-btn"> <svg width="13" height="13" viewBox="0 0 13 13"><title>search</title><path d="m4.8495 7.8226c0.82666 0 1.5262-0.29146 2.0985-0.87438 0.57232-0.58292 0.86378-1.2877 0.87438-2.1144 0.010599-0.82666-0.28086-1.5262-0.87438-2.0985-0.59352-0.57232-1.293-0.86378-2.0985-0.87438-0.8055-0.010599-1.5103 0.28086-2.1144 0.87438-0.60414 0.59352-0.8956 1.293-0.87438 2.0985 0.021197 0.8055 0.31266 1.5103 0.87438 2.1144 0.56172 0.60414 1.2665 0.8956 2.1144 0.87438zm4.4695 0.2115 3.681 3.6819-1.259 1.284-3.6817-3.7 0.0019784-0.69479-0.090043-0.098846c-0.87973 0.76087-1.92 1.1413-3.1207 1.1413-1.3553 0-2.5025-0.46363-3.4417-1.3909s-1.4088-2.0686-1.4088-3.4239c0-1.3553 0.4696-2.4966 1.4088-3.4239 0.9392-0.92727 2.0864-1.3969 3.4417-1.4088 1.3553-0.011889 2.4906 0.45771 3.406 1.4088 0.9154 0.95107 1.379 2.0924 1.3909 3.4239 0 1.2126-0.38043 2.2588-1.1413 3.1385l0.098834 0.090049z"></path></svg> </button> </form> <script> var form = document.getElementById('search-form'); form.onsubmit = function(e) { e.preventDefault(); var query = document.getElementById('search-input').value; window.location.href = '/search.html?query=' + query; return False } </script> </div> <div class='k-main-inner' id='k-main-id'> <div class='k-location-slug'> <span class="k-location-slug-pointer">►</span> Developer guides </div> <div class='k-content'> <h1 id="developer-guides">Developer guides</h1> <p>Our developer guides are deep-dives into specific topics such as layer subclassing, fine-tuning, or model saving. They're one of the best ways to become a Keras expert.</p> <p>Most of our guides are written as Jupyter notebooks and can be run in one click in <a href="https://colab.research.google.com/notebooks/welcome.ipynb">Google Colab</a>, a hosted notebook environment that requires no setup and runs in the cloud. Google Colab includes GPU and TPU runtimes.</p> <h2 id="available-guides">Available guides</h2> <ul> <li><a href="/guides/functional_api/">The Functional API</a></li> <li><a href="/guides/sequential_model/">The Sequential model</a></li> <li><a href="/guides/making_new_layers_and_models_via_subclassing/">Making new layers & models via subclassing</a></li> <li><a href="/guides/training_with_built_in_methods/">Training & evaluation with the built-in methods</a></li> <li><a href="/guides/custom_train_step_in_jax/">Customizing <code>fit()</code> with JAX</a></li> <li><a href="/guides/custom_train_step_in_tensorflow/">Customizing <code>fit()</code> with TensorFlow</a></li> <li><a href="/guides/custom_train_step_in_torch/">Customizing <code>fit()</code> with PyTorch</a></li> <li><a href="/guides/writing_a_custom_training_loop_in_jax/">Writing a custom training loop in JAX</a></li> <li><a href="/guides/writing_a_custom_training_loop_in_tensorflow/">Writing a custom training loop in TensorFlow</a></li> <li><a href="/guides/writing_a_custom_training_loop_in_torch/">Writing a custom training loop in PyTorch</a></li> <li><a href="/guides/serialization_and_saving/">Serialization & saving</a></li> <li><a href="/guides/customizing_saving_and_serialization/">Customizing saving & serialization</a></li> <li><a href="/guides/writing_your_own_callbacks/">Writing your own callbacks</a></li> <li><a href="/guides/transfer_learning/">Transfer learning & fine-tuning</a></li> <li><a href="/guides/distributed_training_with_jax/">Distributed training with JAX</a></li> <li><a href="/guides/distributed_training_with_tensorflow/">Distributed training with TensorFlow</a></li> <li><a href="/guides/distributed_training_with_torch/">Distributed training with PyTorch</a></li> <li><a href="/guides/distribution/">Distributed training with Keras 3</a></li> <li><a href="/guides/migrating_to_keras_3/">Migrating Keras 2 code to Keras 3</a></li> </ul> <h3 id="hyperparameter-tuning"><a href="/guides/keras_tuner/">Hyperparameter Tuning</a></h3> <ul> <li><a href="/guides/keras_tuner/getting_started">Getting started with KerasTuner</a></li> <li><a href="/guides/keras_tuner/distributed_tuning">Distributed hyperparameter tuning with KerasTuner</a></li> <li><a href="/guides/keras_tuner/custom_tuner">Tune hyperparameters in your custom training loop</a></li> <li><a href="/guides/keras_tuner/visualize_tuning">Visualize the hyperparameter tuning process</a></li> <li><a href="/guides/keras_tuner/failed_trials">Handling failed trials in KerasTuner</a></li> <li><a href="/guides/keras_tuner/tailor_the_search_space">Tailor the search space</a></li> </ul> <h3 id="kerascv"><a href="/guides/keras_cv/">KerasCV</a></h3> <ul> <li><a href="/guides/keras_cv/object_detection_keras_cv">Use KerasCV to assemble object detection pipelines</a></li> <li><a href="/guides/keras_cv/classification_with_keras_cv">Use KerasCV to train powerful image classifiers.</a></li> <li><a href="/guides/keras_cv/cut_mix_mix_up_and_rand_augment">CutMix, MixUp, and RandAugment image augmentation with KerasCV</a></li> <li><a href="/guides/keras_cv/generate_images_with_stable_diffusion">High-performance image generation using Stable Diffusion in KerasCV</a></li> <li><a href="/guides/keras_cv/custom_image_augmentations">Custom Image Augmentations with BaseImageAugmentationLayer</a></li> <li><a href="/guides/keras_cv/semantic_segmentation_deeplab_v3_plus">Semantic Segmentation with KerasCV</a></li> <li><a href="/guides/keras_cv/segment_anything_in_keras_cv">Segment Anything in KerasCV</a></li> </ul> <h3 id="kerasnlp"><a href="/guides/keras_nlp/">KerasNLP</a></h3> <ul> <li><a href="/guides/keras_nlp/getting_started">Getting Started with KerasNLP</a></li> <li><a href="/guides/keras_nlp/transformer_pretraining">Pretraining a Transformer from scratch with KerasNLP</a></li> <li><a href="/guides/keras_nlp/upload">Uploading Models with KerasNLP</a></li> </ul> <h3 id="kerashub"><a href="/guides/keras_hub/">KerasHub</a></h3> <ul> <li><a href="/guides/keras_hub/getting_started">Getting Started with KerasHub</a></li> <li><a href="/guides/keras_hub/semantic_segmentation_deeplab_v3">Semantic Segmentation with KerasHub</a></li> <li><a href="/guides/keras_hub/transformer_pretraining">Pretraining a Transformer from scratch with KerasHub</a></li> <li><a href="/guides/keras_hub/upload">Uploading Models with KerasHub</a></li> <li><a href="/guides/keras_hub/classification_with_keras_hub">Classification with KerasHub</a></li> <li><a href="/guides/keras_hub/segment_anything_in_keras_hub">Segment Anything in KerasHub</a></li> <li><a href="/guides/keras_hub/stable_diffusion_3_in_keras_hub">Stable Diffusion 3 in KerasHub</a></li> </ul> </div> <div class='k-outline'> <div class='k-outline-depth-1'> <a href='#developer-guides'>Developer guides</a> </div> <div class='k-outline-depth-2'> ◆ <a href='#available-guides'>Available guides</a> </div> <div class='k-outline-depth-3'> <a href='#hyperparameter-tuning'>Hyperparameter Tuning</a> </div> <div class='k-outline-depth-3'> <a href='#kerascv'>KerasCV</a> </div> <div class='k-outline-depth-3'> <a href='#kerasnlp'>KerasNLP</a> </div> <div class='k-outline-depth-3'> <a href='#kerashub'>KerasHub</a> </div> </div> </div> </div> </div> </body> <footer style="float: left; width: 100%; padding: 1em; border-top: solid 1px #bbb;"> <a href="https://policies.google.com/terms">Terms</a> | <a href="https://policies.google.com/privacy">Privacy</a> </footer> </html>