From 02820432930ee02978e65119c86f4d2d670e1a3f Mon Sep 17 00:00:00 2001 From: Mateusz Sluszniak <56299341+msluszniak@users.noreply.github.com> Date: Mon, 8 Jul 2024 11:09:54 +0200 Subject: [PATCH] Change names in readme (#13) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7072549..d8d4456 100644 --- a/README.md +++ b/README.md @@ -42,14 +42,14 @@ They are therefore compatible with process workflow. You can start a model's process: ```elixir -{:ok, pid} = MobileNetV3.start_link(name: MyModel) +{:ok, pid} = MobileNetV3Small.start_link(name: MyModel) ``` or start it under the supervision tree ```elixir {:ok, _supervisor_pid} = Supervisor.start_link([ - {MobileNetV3, name: MyModel} + {MobileNetV3Small, name: MyModel} ], strategy: :one_for_one) ```