Skip to content

Commit

Permalink
Change names in readme (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
msluszniak authored Jul 8, 2024
1 parent 8f26acf commit 0282043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

Expand Down

0 comments on commit 0282043

Please sign in to comment.