Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
Title: Float8 training and inference with a simple Transformer model
Title: Float8 Quantization-Aware Training and Inference with a simple Transformer model
Author: [Hongyu Chiu](https://github.com/james77777778)
Date created: 2024/05/14
Last modified: 2024/05/14
Description: Train a simple Transformer model with the float8 quantization.
Description: Train a simple Transformer model with float8 quantization-aware training.
Accelerator: GPU
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"colab_type": "text"
},
"source": [
"# Float8 training and inference with a simple Transformer model\n",
"# Float8 Quantization Aware Training and Inference with a simple Transformer model\n",
"\n",
"**Author:** [Hongyu Chiu](https://github.com/james77777778)<br>\n",
"**Date created:** 2024/05/14<br>\n",
"**Last modified:** 2024/05/14<br>\n",
"**Description:** Train a simple Transformer model with the float8 quantization."
"**Description:** Train a simple Transformer model with float8 quantization-aware training."
]
},
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Float8 training and inference with a simple Transformer model
# Float8 Quantization-Aware Training and Inference with a simple Transformer model

**Author:** [Hongyu Chiu](https://github.com/james77777778)<br>
**Date created:** 2024/05/14<br>
**Last modified:** 2024/05/14<br>
**Description:** Train a simple Transformer model with the float8 quantization.
**Description:** Train a simple Transformer model with float8 quantization-aware training.


<img class="k-inline-icon" src="https://colab.research.google.com/img/colab_favicon.ico"/> [**View in Colab**](https://colab.research.google.com/github/keras-team/keras-io/blob/master/examples/keras_recipes/ipynb/float8_training_and_inference_with_transformer.ipynb) <span class="k-dot">•</span><img class="k-inline-icon" src="https://github.com/favicon.ico"/> [**GitHub source**](https://github.com/keras-team/keras-io/blob/master/examples/keras_recipes/float8_training_and_inference_with_transformer.py)
Expand Down
4 changes: 2 additions & 2 deletions scripts/examples_master.py
Original file line number Diff line number Diff line change
Expand Up @@ -958,8 +958,8 @@
"keras_3": True,
},
{
"path": "float8_training_and_inference_with_transformer",
"title": "Float8 training and inference with a simple Transformer model",
"path": "float8_quantization_aware_training_and_inference_with_transformer",
"title": "Float8 Quantization-Aware Training and Inference with a simple Transformer model",
"subcategory": "Keras usage tips",
"keras_3": True,
},
Expand Down
Loading