Skip to content

Commit

Permalink
Update call for contribs
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Jul 17, 2020
1 parent 76c18de commit 33748a7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion call_for_contributions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -72,4 +73,3 @@ The model should use `Conv3D` layers.




40 changes: 20 additions & 20 deletions templates/getting_started/intro_to_keras_for_engineers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
```
</div>
Expand All @@ -580,7 +580,7 @@ print(history.history)

<div class="k-default-codeblock">
```
{'loss': [0.11557048559188843]}
{'loss': [0.11615095287561417]}
```
</div>
Expand Down Expand Up @@ -611,7 +611,7 @@ history = model.fit(dataset, epochs=1)

<div class="k-default-codeblock">
```
938/938 [==============================] - 1s 1ms/step - loss: 0.0801 - acc: 0.9760
938/938 [==============================] - 1s 928us/step - loss: 0.0809 - acc: 0.9753
```
</div>
Expand All @@ -628,7 +628,7 @@ history = model.fit(dataset, epochs=1, validation_data=val_dataset)

<div class="k-default-codeblock">
```
938/938 [==============================] - 1s 1ms/step - loss: 0.0547 - acc: 0.9835 - val_loss: 0.1121 - val_acc: 0.9671
938/938 [==============================] - 1s 1ms/step - loss: 0.0556 - acc: 0.9829 - val_loss: 0.1163 - val_acc: 0.9670
```
</div>
Expand Down Expand Up @@ -713,8 +713,8 @@ print("acc: %.2f" % acc)

<div class="k-default-codeblock">
```
157/157 [==============================] - 0s 667us/step - loss: 0.1121 - acc: 0.9671
loss: 0.11
157/157 [==============================] - 0s 907us/step - loss: 0.1163 - acc: 0.9670
loss: 0.12
acc: 0.97
```
Expand Down Expand Up @@ -899,9 +899,9 @@ model.fit(dataset)

<div class="k-default-codeblock">
```
1/1 [==============================] - 0s 867us/step - loss: 0.5251
1/1 [==============================] - 0s 1ms/step - loss: 0.4867
<tensorflow.python.keras.callbacks.History at 0x183298190>
<tensorflow.python.keras.callbacks.History at 0x17ef6d290>
```
</div>
Expand All @@ -925,9 +925,9 @@ model.fit(dataset)

<div class="k-default-codeblock">
```
1/1 [==============================] - 0s 894us/step - loss: 0.5090
1/1 [==============================] - 0s 967us/step - loss: 0.4994
<tensorflow.python.keras.callbacks.History at 0x1832e8890>
<tensorflow.python.keras.callbacks.History at 0x17efe1190>
```
</div>
Expand Down

0 comments on commit 33748a7

Please sign in to comment.