diff --git a/call_for_contributions.md b/call_for_contributions.md index dc17271b91..eabb81affc 100644 --- a/call_for_contributions.md +++ b/call_for_contributions.md @@ -62,6 +62,7 @@ The dataset should have at least 50k samples and there should be at least a doze ## DETR: End-to-End Object Detection with Transformers [Reference implementation](https://github.com/facebookresearch/detr) +[TF/Keras implementation](https://github.com/auvisusAI/detr-tensorflow) ## 3D image classification @@ -72,4 +73,3 @@ The model should use `Conv3D` layers. - diff --git a/templates/getting_started/intro_to_keras_for_engineers.md b/templates/getting_started/intro_to_keras_for_engineers.md index 1aa8b9f5e6..de0fe48bcc 100644 --- a/templates/getting_started/intro_to_keras_for_engineers.md +++ b/templates/getting_started/intro_to_keras_for_engineers.md @@ -27,20 +27,20 @@ Are you a machine learning engineer looking to use Keras to ship deep-learning powered features in real products? This guide will serve as your first introduction to core Keras API concepts. -In this guide, you will learn about: +In this guide, you will learn how to: -- How to prepare your data before training a model (by turning it into either NumPy +- Prepare your data before training a model (by turning it into either NumPy arrays or `tf.data.Dataset` objects). -- How to do data preprocessing, for instance feature normalization or vocabulary +- Do data preprocessing, for instance feature normalization or vocabulary indexing. -- How to build a model that turns your data into useful predictions, +- Build a model that turns your data into useful predictions, using the Keras Functional API. -- How to train your model with the built-in Keras `fit()` method, while being +- Train your model with the built-in Keras `fit()` method, while being mindful of checkpointing, metrics monitoring, and fault tolerance. -- How to evaluate your model on a test data and how to use it for inference on new data. -- How to customize what `fit()` does, for instance to build a GAN. -- How to speed up training by leveraging multiple GPUs. -- How to refine your model through hyperparameter tuning. +- Evaluate your model on a test data and how to use it for inference on new data. +- Customize what `fit()` does, for instance to build a GAN. +- Speed up training by leveraging multiple GPUs. +- Refine your model through hyperparameter tuning. At the end of this guide, you will get pointers to end-to-end examples to solidify these concepts: @@ -562,9 +562,9 @@ Trainable params: 118,282 Non-trainable params: 0 _________________________________________________________________ Fit on NumPy data -938/938 [==============================] - 1s 1ms/step - loss: 0.2671 +938/938 [==============================] - 1s 804us/step - loss: 0.2696 Fit on Dataset -938/938 [==============================] - 1s 1ms/step - loss: 0.1156 +938/938 [==============================] - 1s 964us/step - loss: 0.1162 ``` @@ -580,7 +580,7 @@ print(history.history)