diff --git a/tutorials/source_en/advanced_use/nlp_application.md b/tutorials/source_en/advanced_use/nlp_application.md index ac20c94f02a803f7ff33fcb26d4cb8cd3762f0ff..d4d805866e4e365bf6bc59bbe9ddd0da9da79a49 100644 --- a/tutorials/source_en/advanced_use/nlp_application.md +++ b/tutorials/source_en/advanced_use/nlp_application.md @@ -15,7 +15,7 @@ - [Configuring Environment Information](#configuring-environment-information) - [Preprocessing the Dataset](#preprocessing-the-dataset) - [Defining the Network](#defining-the-network) - - [Pre-Traning](#pre-training) + - [Pre-Training](#pre-training) - [Defining the Optimizer and Loss Function](#defining-the-optimizer-and-loss-function) - [Training and Saving the Model](#training-and-saving-the-model) - [Validating the Model](#validating-the-model) diff --git a/tutorials/source_en/advanced_use/summary_record.md b/tutorials/source_en/advanced_use/summary_record.md index 9706738c0244dc644839aa096ca495c3ef62cb7f..9d48e4deb74c05a77e9650f4e7a847960bb69f95 100644 --- a/tutorials/source_en/advanced_use/summary_record.md +++ b/tutorials/source_en/advanced_use/summary_record.md @@ -342,7 +342,7 @@ For more parameter Settings, see the [MindInsight related commands](https://www. Right code: ```python3 - ...示例 + ... summary_collector = SummaryCollector('./summary_dir') model.train(epoch=2, train_dataset, callbacks=[summary_collector]) ...