From 3d146422c253ff68a3b4ae96dfd780993f4c4a06 Mon Sep 17 00:00:00 2001 From: Subash-Lamichhane <109226874+Subash-Lamichhane@users.noreply.github.com> Date: Mon, 16 Oct 2023 15:42:04 +0545 Subject: [PATCH] fixed typo of docs\source\implementing_a_new_model.md (#3066) --- docs/source/implementing_a_new_model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/implementing_a_new_model.md b/docs/source/implementing_a_new_model.md index 134271ff..e2a0437e 100644 --- a/docs/source/implementing_a_new_model.md +++ b/docs/source/implementing_a_new_model.md @@ -41,7 +41,7 @@ 6. Optionally, define `MyModelArgs`. `MyModelArgs` is a 👨‍✈️Coqpit class that sets all the class arguments of the `MyModel`. `MyModelArgs` must have - all the fields neccessary to instantiate the `MyModel`. However, for training, you need to pass `MyModelConfig` to + all the fields necessary to instantiate the `MyModel`. However, for training, you need to pass `MyModelConfig` to the model. 7. Test `MyModel`.