/TensorCertificate

Help you get prepared for TensorFlow Developer Certificate~

Primary LanguageJupyter NotebookMIT LicenseMIT

TensorCertificate

Help you get prepared for TensorFlow Developer Certificate~

PS:这个不是教程向的,仅用于备考及考试时速查用。详细教程请移步官网。

Notebooks

考点

建议结合notebook对照考点练习。太宽泛的考点如A.1我就直接划掉了。要考试必然要达成的条件如B.1我也就直接划掉了,帮大家减少干扰。

A. TensorFlow developer skills

  1. Know how to program in Python, resolve Python issues, and compile and run Python programs in PyCharm.
  2. Know how to find information about TensorFlow APIs, including how to find guides and API references on tensorflow.org.
  3. Know how to debug, investigate, and solve error messages from the TensorFlow API.
  4. Know how to search beyond tensorflow.org, as and when necessary, to solve your TensorFlow questions.
  5. Know how to create ML models using TensorFlow where the model size is reasonable for the problem being solved.
  6. Know how to save ML models and check the model file size.
  7. Understand the compatibility discrepancies between different versions of TensorFlow.

B. Building and training neural network models using TensorFlow 2.x

  1. Use TensorFlow 2.x.
  2. Build, compile and train machine learning (ML) models using TensorFlow.
  3. Preprocess data to get it ready for use in a model.
  4. Use models to predict results.
  5. Build sequential models with multiple layers.
  6. Build and train models for binary classification.
  7. Build and train models for multi-class categorization.
  8. Plot loss and accuracy of a trained model.
  9. Identify strategies to prevent overfitting, including augmentation and dropout. 1 2
  10. Use pretrained models (transfer learning). 2
  11. Extract features from pre-trained models. 2
  12. Ensure that inputs to a model are in the correct shape.
  13. Ensure that you can match test data to the input shape of a neural network.
  14. Ensure you can match output data of a neural network to specified input shape for test data.
  15. Understand batch loading of data.
  16. Use callbacks to trigger the end of training cycles. 4
  17. Use datasets from different sources.
  18. Use datasets in different formats, including json and csv.
  19. Use datasets from tf.data.datasets.

C. Image classification

  1. Define Convolutional neural networks with Conv2D and pooling layers. 2
  2. Build and train models to process real-world image datasets. 2
  3. Understand how to use convolutions to improve your neural network. 2
  4. Use real-world images in different shapes and sizes. 2
  5. Use image augmentation to prevent overfitting. 2
  6. Use ImageDataGenerator. 2
  7. Understand how ImageDataGenerator labels images based on the directory structure. 2

D. Natural language processing (NLP)

  1. Build natural language processing systems using TensorFlow.
  2. Prepare text to use in TensorFlow models. 3
  3. Build models that identify the category of a piece of text using binary categorization 3
  4. Build models that identify the category of a piece of text using multi-class categorization 4
  5. Use word embeddings in your TensorFlow model. 3
  6. Use LSTMs in your model to classify text for either binary or multi-class categorization. 3
  7. Add RNN and GRU layers to your model. 4
  8. Use RNNS, LSTMs, GRUs and CNNs in models that work with text. 3 4
  9. Train LSTMs on existing text to generate text (such as songs and poetry) 4

E. Time series, sequences and predictions

  1. Train, tune and use time series, sequence and prediction models. 5
  2. Prepare data for time series learning. 5
  3. Understand Mean Average Error (MAE) and how it can be used to evaluate accuracy of sequence models. 5
  4. Use RNNs and CNNs for time series, sequence and forecasting models. 5
  5. Identify when to use trailing versus centred windows.
    center_ma(t) = mean(obs(t-1), obs(t), obs(t+1))
    A center moving average can be used as a general method to remove trend and seasonal components from a time series, a method that we often cannot use when forecasting.
    
    trail_ma(t) = mean(obs(t-2), obs(t-1), obs(t))
    Trailing moving average only uses historical observations and is used on time series forecasting.
    
  6. Use TensorFlow for forecasting. 5
  7. Prepare features and labels. 5
  8. Identify and compensate for sequence bias. (When respondents tend to favor objects because of their position in a list or sequence. The objects at the beginning and at the end of a list can be remembered more than those occurring in the middle. Usual practice is to rotate a list to eliminate this type of bias.)
  9. Adjust the learning rate dynamically in time series, sequence and prediction models. 5