You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+24-12Lines changed: 24 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,26 +7,38 @@ Colab, using the links below.
7
7
8
8
Train and build a model for the Edge TPU:
9
9
10
-
+[Retrain a classification model using post-training quantization (with TF2)](https://colab.research.google.com/github/google-coral/tutorials/blob/master/retrain_classification_ptq_tf2.ipynb)
10
+
+[Retrain a classification model using post-training quant (TF2)](https://colab.research.google.com/github/google-coral/tutorials/blob/master/retrain_classification_ptq_tf2.ipynb)
11
11
12
-
This shows how to build an image classification model with Keras, train it
13
-
with a custom dataset, quantize it with post-training quantization, and then
14
-
compile it for the Edge TPU.
12
+
This notebook builds the MobileNet V2 classification model using Keras
13
+
(with TF2), retrains it to classify different flowers, quantizes it with post-
14
+
training quantization, and then compiles it for the Edge TPU.
15
15
16
16
We have another [version of this tutorial using TF1](
+[Retrain a classification model using quant-aware training (with TF1)](https://colab.research.google.com/github/google-coral/tutorials/blob/master/retrain_classification_qat_tf1.ipynb)
19
+
+[Retrain a classification model using quant-aware training (TF1)](https://colab.research.google.com/github/google-coral/tutorials/blob/master/retrain_classification_qat_tf1.ipynb)
20
20
21
-
This shows how to retrain a quant-aware classification model using TF1. This
22
-
process is complex, so the notebook calls upon several Python scripts
23
-
to do the work (links to these scripts are provided in the notebook).
21
+
This notebook retrains a quant-aware version of MobileNet V1 (with TF1) to
22
+
classify different flowers, and then compiles it for the Edge TPU.
24
23
25
-
+[Retrain an object model using quant-aware training (with TF1)](https://colab.research.google.com/github/google-coral/tutorials/blob/master/retrain_detection_qat_tf1.ipynb)
24
+
+[Retrain an object detection model (MobileNet) using quant-aware training (TF1)](https://colab.research.google.com/github/google-coral/tutorials/blob/master/retrain_detection_qat_tf1.ipynb)
25
+
26
+
This notebook retrains a quant-aware version of MobileNet V1 SSD (with TF1)
27
+
to detect cats and dogs, and then compiles it for the Edge TPU.
28
+
29
+
+[Retrain an object detection model (MobileDet) using post-training quant (TF1)](https://colab.research.google.com/github/google-coral/tutorials/blob/master/retrain_ssdlite_mobiledet_qat_tf1.ipynb)
30
+
31
+
This notebook retrains the SSDLite MobileDet model to detect cats and dogs,
32
+
quantizes it with post-training quantization, and then compiles it for the
33
+
Edge TPU.
34
+
35
+
+[Retrain an object detection model (EfficientDet) using TF Lite Model Maker (TF2)](https://github.com/google-coral/tutorials/blob/master/retrain_efficientdet_model_maker_tf2.ipynb)
36
+
37
+
This notebook retrains the EfficientDet-Lite model using the TensorFlow Lite
38
+
Model Maker library (based on TF2) to detect different salad ingredients,
39
+
exports it to TF Lite (using post-training quantization), and then compiles it
40
+
for the Edge TPU.
26
41
27
-
This shows how to retrain a quant-aware object detection model using TF1. This
28
-
process is complex, so the notebook calls upon several Python scripts
29
-
to do the work (links to these scripts are provided in the notebook).
0 commit comments